All Projects → JuliaStats → Dataarrays.jl

JuliaStats / Dataarrays.jl

Licence: other
DEPRECATED: Data structures that allow missing values

Programming Languages

julia
2034 projects

Projects that are alternatives of or similar to Dataarrays.jl

Sarama Cluster
Cluster extensions for Sarama, the Go client library for Apache Kafka 0.9 [DEPRECATED]
Stars: ✭ 969 (+1694.44%)
Mutual labels:  deprecated
Winternote
[Deprecated] Semantic WYSIWYG editor.
Stars: ✭ 47 (-12.96%)
Mutual labels:  deprecated
Malware
Malware related code
Stars: ✭ 51 (-5.56%)
Mutual labels:  deprecated
Helm Registry
The helm registry to store and deliver charts (Deprecated since compass v2.9)
Stars: ✭ 36 (-33.33%)
Mutual labels:  deprecated
Findbugs Plugin
Jenkins findbugs plugin
Stars: ✭ 43 (-20.37%)
Mutual labels:  deprecated
Mricrogl
DEPRECATED development has moved to https://github.com/rordenlab/MRIcroGL12
Stars: ✭ 49 (-9.26%)
Mutual labels:  deprecated
Brunch With Vue
[deprecated] A skeleton application utilizing vue, vuex, vue-resource and vue-router.
Stars: ✭ 32 (-40.74%)
Mutual labels:  deprecated
Android Lint Plugin
Android Lint parser plugin for Jenkins
Stars: ✭ 52 (-3.7%)
Mutual labels:  deprecated
Connect Python Sdk
Python client library for the Square Connect APIs
Stars: ✭ 45 (-16.67%)
Mutual labels:  deprecated
Wearhttp
This library provides a means to access the content on the Web easily from AndroidWear. Welcome pull request
Stars: ✭ 51 (-5.56%)
Mutual labels:  deprecated
Strano
Strano is a web UI to run any tasks (but mostly Capistrano) from any of your git repo.
Stars: ✭ 36 (-33.33%)
Mutual labels:  deprecated
Tmwa Client Data
DEPRECATED: The data used by the ManaPlus client for the tmwAthena server used by The Mana World Legacy. All further development will take place in the "client-data" repo.
Stars: ✭ 42 (-22.22%)
Mutual labels:  deprecated
Codeigniter Base Model
⛔️DEPRECATED CodeIgniter base CRUD model to remove repetition and increase productivity
Stars: ✭ 1,052 (+1848.15%)
Mutual labels:  deprecated
Libvirt
DEPRECATED Vanilla dockerized libvirt image, used as a base for kubevirt
Stars: ✭ 34 (-37.04%)
Mutual labels:  deprecated
Zoho Crm Client Php
[DEPRECATED] Provides a clean readable PHP API to the Zoho Rest API.
Stars: ✭ 52 (-3.7%)
Mutual labels:  deprecated
Ng2 Typeahead
Autocomplete component for Angular 2
Stars: ✭ 33 (-38.89%)
Mutual labels:  deprecated
Androidffmpeg
[DEPRECATED] FFmpeg build for android random architectures with example jni
Stars: ✭ 1,049 (+1842.59%)
Mutual labels:  deprecated
Graphql Modules
⚠️ [DEPRECATED] GraphQL module library for Apollo.
Stars: ✭ 53 (-1.85%)
Mutual labels:  deprecated
Terminal Ide
💀 A full command line based Java / Android develpment kit, that runs on Android devices.
Stars: ✭ 52 (-3.7%)
Mutual labels:  deprecated
Puppet Staging
⛔️ Deprecated in favor of puppet-archive
Stars: ✭ 50 (-7.41%)
Mutual labels:  deprecated

DataArrays.jl

Build Status Coverage Status

Latest release: DataArrays

Documentation:

THIS PACKAGE IS DEPRECATED with Julia versions above 0.7. Use Array{Union{T, Missing}} instead: see this blog post.

The DataArrays package provides the DataArray type for working efficiently with missing data in Julia, based on the missing value from the Missings.jl package.

Most Julian arrays cannot contain missing values: only Array{Union{T, Missing}} and more generally Array{>:Missing} can contain missing values.

The generic use of heterogeneous Array is discouraged in Julia versions below 0.7 because it is inefficient: accessing any value requires dereferencing a pointer. The DataArray type allows one to work around this inefficiency by providing tightly-typed arrays that can contain values of exactly one type, but can also contain missing values.

For example, a DataArray{Int} can contain integers and missing values. We can construct one as follows:

da = @data([1, 2, missing, 4])

This package used to provide the PooledDataArray type, a variant of DataArray{T} optimized for representing arrays that contain many repetitions of a small number of unique values. PooledDataArray has been deprecated in favor of CategoricalArray or PooledArray.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].