logo

ジュリアでデータフレームの要約を見る方法 📂ジュリア

ジュリアでデータフレームの要約を見る方法

ガイド 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