Usage examples
The linter comes in two flavours, as a CLI utility and a server. Each serves a different purpose: the CLI utility is best suited for linting data outside an experimental environment and builds its linting context only from the configuration file. The server version builds the context from both configuration file and code provided along with the data and is best suited for online interactive eviroments, where code is readily available with the data to be linted.
Running the Docker container
Quick test
The Docker container contains compiled versions of the CLI utility and server. To test them, run
$ docker run -it --rm \
ghcr.io/zgornel/datalinter-compiled:latest \
/datalinter/bin/datalinter --help
and
$ docker run -it --rm \
ghcr.io/zgornel/datalinter-compiled:latest \
/datalinterserver/datalinterserver --help
respectively.
Note: Before running the linter, make sure that the Docker container has mapped all the relevant directories. Check out the Dockerfile of the image to see what directories are available inside the container (created with the
mkdir -p
commands).
CLI-based linting
The CLI-based linter is useful when linting data with no context or in contexts that can be described easily with simple options i.e. type of experiment, target columns, data columns. To lint a test dataset with no context, run the following command in the root of the repository:
$ time docker run -it --rm \
--volume=./test/data:/_data \
ghcr.io/zgornel/datalinter-compiled:latest \
/datalinter/bin/datalinter \
/_data/data.csv \
--progress \
--timed \
--print-exceptions \
--log-level error
The output should look something like:
× important (empty_example) row: 9 the example at 'row: 10' looks empty
× important (empty_example) row: 10 the example at 'row: 11' looks empty
! warning (large_outliers) column: x0 the values of 'column: x1' contain large outliers
! warning (int_as_float) column: x3 the values of 'column: x4' are floating point but can be integers
• info (tokenizable_string) column: x5 the values of 'column: x6' could be tokenizable i.e. contain spaces
• info (tokenizable_string) column: x7 the values of 'column: x8' could be tokenizable i.e. contain spaces
• info (enum_detector) column: x4 just a few distinct values in 'column: x5', it could be an enum
• info (enum_detector) column: x7 just a few distinct values in 'column: x8', it could be an enum
• info (enum_detector) column: x3 just a few distinct values in 'column: x4', it could be an enum
• info (uncommon_signs) column: x0 uncommon signs (+/-/NaN/0) present in 'column: x1'
• info (long_tailed_distrib) column: x1 the distribution for 'column: x2' has 'long tails'
• info (long_tailed_distrib) column: x6 the distribution for 'column: x7' has 'long tails'
• info (long_tailed_distrib) column: x2 the distribution for 'column: x3' has 'long tails'
• info (long_tailed_distrib) column: x0 the distribution for 'column: x1' has 'long tails'
• experimental (negative_values) column: x0 found values smaller than 0 in 'column: x1'
14 issues found from 15 linters applied (14 OK, 1 N/A) .
Completed in 0.997672896 seconds, 58.15185546875 MB allocated, 12.4114105% gc time
docker run -it --rm --volume=./test/data:/_data --volume=./config:/_config -1.00s user 0.02s system 0% cpu 3.684 total
The following lint uses a configuration file where the some context is provided as well:
$ time docker run -it --rm \
--volume=./test/data:/_data \
--volume=./config:/_config \
ghcr.io/zgornel/datalinter-compiled:latest \
/datalinter/bin/datalinter /_data/imbalanced_data.csv \
--config-path /_config/imbalanced_data.toml \
--log-level warn
which outputs,
! warning (large_outliers) column: col3 the values of 'column: col4' contain large outliers
! warning (int_as_float) column: col3 the values of 'column: col4' are floating point but can be integers
• info (enum_detector) column: col3 just a few distinct values in 'column: col4', it could be an enum
• info (uncommon_signs) column: col3 uncommon signs (+/-/NaN/0) present in 'column: col4'
• info (long_tailed_distrib) column: col3 the distribution for 'column: col4' has 'long tails'
• experimental (imbalanced_target_variable) dataset Imbalanced target column in 'dataset'
5 issues found from 17 linters applied (12 OK, 5 N/A) .
docker run -it --rm --volume=./test/data:/_data --volume=./config:/_config -1.02s user 0.02s system 0% cpu 3.883 total
Server-based linting
The server version of the linter is useful for integration with editors and other third party apps that can integrate outputs from a remote linter. To start the linting server and listen on address 0.0.0.0
and port 10000
one can run
$ docker run -it --rm -p10000:10000\
ghcr.io/zgornel/datalinter-compiled:alpine\
/datalinterserver/bin/datalinterserver\
-i 0.0.0.0\
--config-path /datalinter/config/r_glmmTMB_imbalanced_data.toml\
--log-level debug
Upon starting, the server outputs:
Warning: KB file not correctly specified, defaults will be used.
└ @ datalinterserver /DataLinter/apps/datalinterserver/src/datalinterserver.jl:83
[ Info: • Data linting server online @0.0.0.0:10000...
[ Info: Listening on: 0.0.0.0:10000, thread id: 1
The server accepts HTTP requests with a specific JSON payload containing data or, data and code. Upon receiving a request, it will try to run the linter and return a JSON with the output. A client script can be found in scripts/client.jl
. The following command sets up a temporary environment for the script to run:
$ julia --project=@datalinter -e 'using Pkg; Pkg.add(["HTTP", "JSON", "DelimitedFiles"])'
Running the client script with data and code arguments
$ julia --project=@datalinter ./scripts/client.jl ./data/imbalanced_data.csv ./test/code/r_snippet_binomial.r
outputs:
--- Code:
path <- "./data.csv"
out0 <- loaded_data(path)
out1 <- glmmTMB(col4 ~ col1 + col2 + col3,
data = out0,
family = binomial(link = "linear")) # raises linter error
--- Linting output (HTTP Status: 200):
• n/a (imbalanced_target_variable) dataset linter not applicable (or failed) for 'dataset'
• experimental (R_glmmTMB_target_variable) dataset Imbalanced dependent variable (glmmTMB)
• experimental (R_glmmTMB_binomial_modelling) dataset Incorrect binomial data modelling (glmmTMB)
1 issues found from 3 linters applied (2 OK, 1 N/A) .
Using the datalinter.sh
script
Note: This option does not support the specification of a config file and will use the default linters and parameter values.
The linter can also be run quickly through the datalinter.sh
shell script. To run in on the test dataset, one can do:
$ ./datalinter.sh ./test/data/data.csv
The script can be ran from any directory and accepts a single argument, the dataset that is to be linted.
Running in the Julia REPL
First, generate some random data:
julia> using DataLinter
julia> ncols, nrows = 3, 10
(3, 10)
julia> data = [rand(nrows) for _ in 1:ncols]
3-element Vector{Vector{Float64}}: [0.14332732083995603, 0.5842587716139939, 0.23414439814849963, 0.7363592792888597, 0.7927654043431089, 0.5203254234703173, 0.8429042634715542, 0.6309424674328337, 0.17285863732012097, 0.07559492432062642] [0.09800265654232532, 0.7358918461841479, 0.21253307631122742, 0.4395561319816652, 0.17002051800925133, 0.6833513880449713, 0.012538130365085776, 0.9765071966450757, 0.17011970789219544, 0.5893959335629027] [0.808666428476702, 0.8556019955307468, 0.7146166795948571, 0.05202153513025176, 0.19448228575856508, 0.4583457104822164, 0.04100156078847539, 0.48061172321809453, 0.30946752483680406, 0.05015976420697155]
then, generate a context object:
julia> ctx = DataLinter.build_data_context(data)
SimpleDataContext 0.00040435791015625 MB of data
Context objects are the main linter inputs along with a knowledge base and the config.
julia> kb = DataLinter.kb_load("") # raises Warning
KnowledgeBase with 9.1552734375e-5 MB of data
julia> lintout = DataLinter.LinterCore.lint(ctx, kb)
41-element Vector{Pair{Tuple{DataLinter.LinterCore.Linter, String}, Union{Nothing, Bool}}}: (Linter (name=datetime_as_string, f=is_datetime_as_string), "column: x2") => nothing (Linter (name=datetime_as_string, f=is_datetime_as_string), "column: x3") => nothing (Linter (name=datetime_as_string, f=is_datetime_as_string), "column: x1") => nothing (Linter (name=tokenizable_string, f=is_tokenizable_string), "column: x2") => nothing (Linter (name=tokenizable_string, f=is_tokenizable_string), "column: x3") => nothing (Linter (name=tokenizable_string, f=is_tokenizable_string), "column: x1") => nothing (Linter (name=number_as_string, f=is_number_as_string), "column: x2") => nothing (Linter (name=number_as_string, f=is_number_as_string), "column: x3") => nothing (Linter (name=number_as_string, f=is_number_as_string), "column: x1") => nothing (Linter (name=zipcodes_as_values, f=is_zipcode), "column: x2") => nothing ⋮ (Linter (name=circular_domain, f=has_circular_domain), "column: x2") => 1 (Linter (name=circular_domain, f=has_circular_domain), "column: x3") => 1 (Linter (name=circular_domain, f=has_circular_domain), "column: x1") => 1 (Linter (name=many_missing_values, f=has_many_missing_values), "column: x2") => 1 (Linter (name=many_missing_values, f=has_many_missing_values), "column: x3") => 1 (Linter (name=many_missing_values, f=has_many_missing_values), "column: x1") => 1 (Linter (name=negative_values, f=has_negative_values), "column: x2") => 1 (Linter (name=negative_values, f=has_negative_values), "column: x3") => 1 (Linter (name=negative_values, f=has_negative_values), "column: x1") => 1
julia> lintout = DataLinter.LinterCore.lint(ctx, nothing) # also works
41-element Vector{Pair{Tuple{DataLinter.LinterCore.Linter, String}, Union{Nothing, Bool}}}: (Linter (name=datetime_as_string, f=is_datetime_as_string), "column: x2") => nothing (Linter (name=datetime_as_string, f=is_datetime_as_string), "column: x3") => nothing (Linter (name=datetime_as_string, f=is_datetime_as_string), "column: x1") => nothing (Linter (name=tokenizable_string, f=is_tokenizable_string), "column: x2") => nothing (Linter (name=tokenizable_string, f=is_tokenizable_string), "column: x3") => nothing (Linter (name=tokenizable_string, f=is_tokenizable_string), "column: x1") => nothing (Linter (name=number_as_string, f=is_number_as_string), "column: x2") => nothing (Linter (name=number_as_string, f=is_number_as_string), "column: x3") => nothing (Linter (name=number_as_string, f=is_number_as_string), "column: x1") => nothing (Linter (name=zipcodes_as_values, f=is_zipcode), "column: x2") => nothing ⋮ (Linter (name=circular_domain, f=has_circular_domain), "column: x2") => 1 (Linter (name=circular_domain, f=has_circular_domain), "column: x3") => 1 (Linter (name=circular_domain, f=has_circular_domain), "column: x1") => 1 (Linter (name=many_missing_values, f=has_many_missing_values), "column: x2") => 1 (Linter (name=many_missing_values, f=has_many_missing_values), "column: x3") => 1 (Linter (name=many_missing_values, f=has_many_missing_values), "column: x1") => 1 (Linter (name=negative_values, f=has_negative_values), "column: x2") => 1 (Linter (name=negative_values, f=has_negative_values), "column: x3") => 1 (Linter (name=negative_values, f=has_negative_values), "column: x1") => 1
Lastly, one can print output of activate linters i.e. the ones that found problems in the data.
julia> DataLinter.process_output(lintout)
• info (long_tailed_distrib) column: x2 the distribution for 'column: x2' has 'long tails' • info (long_tailed_distrib) column: x3 the distribution for 'column: x3' has 'long tails' • info (long_tailed_distrib) column: x1 the distribution for 'column: x1' has 'long tails'