November 2016
Intermediate to advanced
697 pages
14h 44m
English
When dealing with tabulated datasets there are occasions when some of the values are missing. One of the features of statistical languages is that they can handle such situations.
In Julia, the DataFrames package has been developed in order to treat such cases and this is the subject of this chapter.
The package extends the Julia base by adding three new types:
NA is introduced in order to represent a missing value. This type only has one particular value NA.DataArray is a type that emulates Julia's standard Array type, but is able to store missing values in the array.DataFrame is a type that is capable of representing tabular datasets such as those found in typical databases or spreadsheets. The concept ...Read now
Unlock full access