DataSkimmer.jl icon indicating copy to clipboard operation
DataSkimmer.jl copied to clipboard

📊 A Julia package that summarises tabular data in the REPL

Results 3 DataSkimmer.jl issues
Sort by recently updated
recently updated
newest added

Example: ```julia using DataSkimmer using DataFrames df = DataFrame(Dict([Symbol(k) => 1:10 for k in 'a':'z'])...) skim(df) ``` Output: ``` ┌─────────────────────┬───────────┐ │ Type │ DataFrame │ │ N. rows │ 10...