Sorry for errors. I wanted to use a small dummy dataset to represent the database I'm working with. I did not expect a value of "University private". It should just be "University". Thanks for correcting me. This is the good dataset. 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
; Please can you explain me how to draw a curve of evolution of col1 according to the name for each type_college. On the abscissa axis, I have the name appeared in this order ( delai_dec20 , delai_juin21,delai_dec21,delai_sep22). Here is a picture of I want. Thanks in advance.
... View more