Hello,
Here is my dataset. I have two categorical variables (type_college and name) and a numeric variable (COL1).
I don't know how to plot on the same graph the evolution curves of COL1 according to name for each type_college.
data students;
infile datalines dlm=',' dsd;
informat type_college $15. name $15. ;
input type_college name $ COL1 ;
datalines;
College private,delai_dec20,1.5
College private,delai_juin21,3.6
College private,delai_dec21,4.4
College private,delai_sep22,47.6
College public,delai_dec20,5.3
College public,delai_juin21,6
College public,delai_dec21,14.4
College public,delai_sep22,14.4
University,delai_dec20,11.1
University,delai_juin21,14.3
University,delai_dec21,14
University,delai_sep22,17.1
,delai_dec20,5.6
,delai_juin21,7.1
,delai_dec21,12
,delai_sep22,18.1
;
here is exactly what I want for result.
Thanks.