Julia plot / statsplot 确实显示默认标签而不是列名
Julia plot / statsplot does show default labels instead of column names
我的 Julia 图确实显示默认标签 y1
和 y2
而不是列名称 a
和 b
.
using DataFrames, Plots, Statplots
df_test = DataFrame(a = 0:10, b = 20:30, c = 30:40)
@df df_test plot(:a, [:b, :c])
关于如何在不明确命名标签的情况下解决问题的任何建议?
您需要将第二个参数作为单行矩阵传递才能得到您想要的结果:
@df df_test plot(:a, [:b :c])
(请注意 :b
和 :c
之间没有逗号 - 只有 space)
我的 Julia 图确实显示默认标签 y1
和 y2
而不是列名称 a
和 b
.
using DataFrames, Plots, Statplots
df_test = DataFrame(a = 0:10, b = 20:30, c = 30:40)
@df df_test plot(:a, [:b, :c])
关于如何在不明确命名标签的情况下解决问题的任何建议?
您需要将第二个参数作为单行矩阵传递才能得到您想要的结果:
@df df_test plot(:a, [:b :c])
(请注意 :b
和 :c
之间没有逗号 - 只有 space)