"Not" 使用 Julia DataFrames 时未定义
"Not" not defined while using Julia DataFrames
在阅读 MLJ 的 DataFrames 教程时,我遇到了以下错误
julia> b2 = select(boston, Not(:NOx))
ERROR: UndefVarError: Not not defined
Stacktrace:
[1] top-level scope at none:0
Link 到教程:https://alan-turing-institute.github.io/DataScienceTutorials.jl/data/dataframe/
这个操作应该有效:
julia> b2 = select(boston, Not(:NOx))
506×13 DataFrame
Row │ Crim Zn Indus Chas Rm A ⋯
│ Float64 Float64 Float64 Int64 Float64 F ⋯
─────┼───────────────────────────────────────────────
1 │ 0.00632 18.0 2.31 0 6.575 6 ⋯
2 │ 0.02731 0.0 7.07 0 6.421 7
3 │ 0.02729 0.0 7.07 0 7.185 6
⋮ │ ⋮ ⋮ ⋮ ⋮ ⋮ ⋱
504 │ 0.06076 0.0 11.93 0 6.976 9
505 │ 0.10959 0.0 11.93 0 6.794 8 ⋯
506 │ 0.04741 0.0 11.93 0 6.03 8
8 columns and 500 rows omitted
请确保您使用的是最新的 DataFrames.jl 版本。在 Julia REPL 中按 ]
进入包管理器模式,然后写入:
(@v1.6) pkg> st DataFrames
Status `~/.julia/environments/v1.6/Project.toml`
[a93c6f00] DataFrames v0.22.5
您的版本号应为 0.22.5(截至撰写本文时)。
如果它是一些旧版本,您可能有一些限制更新 DataFrames.jl 的其他软件包。 Here 是描述如何诊断此类情况的 post。
在阅读 MLJ 的 DataFrames 教程时,我遇到了以下错误
julia> b2 = select(boston, Not(:NOx))
ERROR: UndefVarError: Not not defined
Stacktrace:
[1] top-level scope at none:0
Link 到教程:https://alan-turing-institute.github.io/DataScienceTutorials.jl/data/dataframe/
这个操作应该有效:
julia> b2 = select(boston, Not(:NOx))
506×13 DataFrame
Row │ Crim Zn Indus Chas Rm A ⋯
│ Float64 Float64 Float64 Int64 Float64 F ⋯
─────┼───────────────────────────────────────────────
1 │ 0.00632 18.0 2.31 0 6.575 6 ⋯
2 │ 0.02731 0.0 7.07 0 6.421 7
3 │ 0.02729 0.0 7.07 0 7.185 6
⋮ │ ⋮ ⋮ ⋮ ⋮ ⋮ ⋱
504 │ 0.06076 0.0 11.93 0 6.976 9
505 │ 0.10959 0.0 11.93 0 6.794 8 ⋯
506 │ 0.04741 0.0 11.93 0 6.03 8
8 columns and 500 rows omitted
请确保您使用的是最新的 DataFrames.jl 版本。在 Julia REPL 中按 ]
进入包管理器模式,然后写入:
(@v1.6) pkg> st DataFrames
Status `~/.julia/environments/v1.6/Project.toml`
[a93c6f00] DataFrames v0.22.5
您的版本号应为 0.22.5(截至撰写本文时)。
如果它是一些旧版本,您可能有一些限制更新 DataFrames.jl 的其他软件包。 Here 是描述如何诊断此类情况的 post。