Plotting correlation scatter matrix plot in Julia -
i plot data in particular dataframe
obtained rdataests
,
julia> prestige = dataset("car", "prestige")
the dataframe
consists of various columns, interested in plotting 3 of them viz. prestige
, income
, education
. have matrix of scatter plots, 1 obtained using r
shown below,
try statplots?
using statplots, rdatasets; pyplot() prestige = dataset("car", "prestige"); corrplot(array(prestige[[:prestige, :income, :education]]), bins=10)
Comments
Post a Comment