SeriesまたはDataFrameが代入された変数.plot(kind="グラフの種類") SeriesまたはDataFrameが代入された変数.plot.グラフの種類() ★引数kindにグラフの種類を指定する記法★ ※引数bins:分割する階級の数の指定も可能。 ※引数subplots=True:各カラムを異なるグラフ領域に ...
df.plot(subplots=True) will create one subplot per column. Is there a way to group multiple columns on the same subplot (and leave the rest of the column separated)? I'd be happy to submit a PR if ...
Hi I'm using Julia 0.4.3 and Gadfly 0.4.2. Gadfly is nice! Here is a plot: using Gadfly using DataFrames function dsinc(r, x,y) z = sqrt(x.^2 + y.^2) z = cos(z)./z ...