All Projects → queryverse → DataValues.jl

queryverse / DataValues.jl

Licence: other
Missing values for julia

Programming Languages

julia
2034 projects

Projects that are alternatives of or similar to DataValues.jl

ExcelFiles.jl
FileIO.jl integration for Excel files
Stars: ✭ 42 (+200%)
Mutual labels:  queryverse
DataVoyager.jl
Julia wrapper for the Voyager data exploration tool
Stars: ✭ 106 (+657.14%)
Mutual labels:  queryverse
ParquetFiles.jl
FileIO.jl integration for Parquet files
Stars: ✭ 18 (+28.57%)
Mutual labels:  queryverse
ReadStat.jl
Read files from Stata, SAS, and SPSS
Stars: ✭ 73 (+421.43%)
Mutual labels:  queryverse

DataValues

Project Status: Active - The project has reached a stable, usable state and is being actively developed. Build Status Build status codecov

Overview

This package provides the type DataValue that is used to represent missing data.

Currently the main use of this type is in the Query.jl and IterableTables.jl packages.

This repo is based on the following principles/ideas:

  • This type is meant to make life for data scientists as easy as possible. That is the main guiding principle.
  • We hook into the dot broadcasting mechanism from julia 0.7 to provide lifting functionality for functions that don't have specific methods for DataValue arguments.
  • The & and | operators follow the 3VL semantics for DataValues.
  • Comparison operators like ==, < etc. on DataValues return Bool values, i.e. they are normal predicates.
  • The package provides many lifted methods.
  • One can access or unpack the value within a DataValue either via the get(x) function, or use the x[] syntax.

Any help with this package would be greatly appreciated!

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].