我想在从$( 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")
由不同的列组成,但我有兴趣绘制其中的三个。 DataFrame
,Prestige
和Income
。我想有一个散点图矩阵,就像使用Education
得到的那样,如下所示,
答案 0 :(得分:3)
试试StatPlots?
using StatPlots, RDatasets; pyplot()
prestige = dataset("car", "Prestige");
corrplot(Array(prestige[[:Prestige, :Income, :Education]]), bins=10)