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,

enter image description here

try statplots?

using statplots, rdatasets; pyplot() prestige = dataset("car", "prestige"); corrplot(array(prestige[[:prestige, :income, :education]]), bins=10) 

enter image description here


Comments

Popular posts from this blog

unity3d - Rotate an object to face an opposite direction -

angular - Is it possible to get native element for formControl? -

javascript - Why jQuery Select box change event is now working? -