この例は、二変量の関係の分析をレポートとして保存し、JMP Liveに発行する方法を示します。
publishUrl = "https://live.company.com:3501";
username = "xyz@jmp.com";
password = "test";
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt << Color by Column( :性別 );
rpt = dt << Bivariate(
Y( :Name("体重(ポンド)") ),
X( :Name("身長(インチ)") ),
Automatic Recalc( 1 ),
Fit Line( {Line Color( {213, 72, 87} )} ),
Local Data Filter( Add Filter( columns( :性別 ) ) )
);
webrpt = New Web Report();
// グラフの上とブラウザのタブに表示されるタイトル
webrpt << Add Report( rpt, Title( "Big Class Bivariate" ), Description( "テスト" ) );
url = webrpt << Publish( URL( publishUrl ), API Key( APIkey ), Username( username ), Password( password ), public( 1 ) ); // public report
If( webrpt << IsSuccessful,
Web( url ),
Write( "\!n発行に失敗しました:", webrpt << Get Status Message )
);
rpt << Close Window();
Close( dt, NoSave );