줄리아에서 데이터 프레임 요약보는 법
가이드 1
using RDatasets
iris = dataset("datasets", "iris")
describe(iris)
describe()
함수를 사용하면 된다. iris
데이터를 요약해보자.
julia> describe(iris)
5×7 DataFrame
Row │ variable mean min median max nmissing eltype
│ Symbol Union… Any Union… Any Int64 DataType
─────┼────────────────────────────────────────────────────────────────────────────────────────────
1 │ SepalLength 5.84333 4.3 5.8 7.9 0 Float64
2 │ SepalWidth 3.05733 2.0 3.0 4.4 0 Float64
3 │ PetalLength 3.758 1.0 4.35 6.9 0 Float64
4 │ PetalWidth 1.19933 0.1 1.3 2.5 0 Float64
5 │ Species setosa virginica 0 CategoricalValue{String, UInt8}
환경
- OS: Windows
- julia: v1.6.3