在Julia中绘制相关散射矩阵图

时间:2016-09-22 16:27:24

标签: plot julia

我想在从$( document ).ready(function() { $('.formEmail').on('change', function() { //ajax request $.ajax({ url: "queries/checkEmail.php", data: { 'email' : $('.formEmail').val() }, dataType: 'json', success: function(data) { if(data == true) { alert('Email exists!'); } else { alert('Email doesnt!'); } }, error: function(data){ //error } }); }); });

获得的特定DataFrame中绘制数据
RDataests

julia> prestige = dataset("car", "Prestige") 由不同的列组成,但我有兴趣绘制其中的三个。 DataFramePrestigeIncome。我想有一个散点图矩阵,就像使用Education得到的那样,如下所示,

enter image description here

1 个答案:

答案 0 :(得分:3)

试试StatPlots

using StatPlots, RDatasets; pyplot()
prestige = dataset("car", "Prestige");
corrplot(Array(prestige[[:Prestige, :Income, :Education]]), bins=10)

enter image description here