-1
複数行のグラフのタイトルはどのようにすることができますか?私は最初の行にタイトルをつけて、次にそのタイトルの下の段落をグラフの説明に付ける必要があります。 私の試みは次のとおりです。proc sgplot複数行タイトル
proc sgplot data= maindata.small_medium_big_firms;
title "Number of big, medium and small firms"
title1 " this is to explain the graph .........";
series x=year y=group_1/lineattrs=(color=red) legendlabel= "small";
series x=year y=group_2/lineattrs=(color=blue) legendlabel= "medium";
series x=year y=group_3/lineattrs=(color=black) legendlabel= "big";
YAXIS LABEL = 'Number of firms';
XAXIS LABEL = 'Year';
run;
するTry TITLE1 TITLE2と – Reeza
私はTITLE1を試してみましたが、それが唯一のタイトル1の値を取り、あなたはTITLE1 TITLE2とを必要とする理由であるタイトル – duckman
を無視します。タイトルはtitle1と同じで、上書きします。 – Reeza