I'm trying to get a scatter plot to overlay my box plot with proc sgplot vbox. The box plot looks great but it's not showing the individual data points. I've exhaustively searched the forum, and this is what I could come up with: title "Individual Resting State Network Con...
proc boxplot data=Simon4; plot (IL10A IL10B IL10C IL10D)*Geschlecht/ HEIGHT=2 boxstyle=SCHEMATICID cboxfill=BIG cboxes=black; insetgroup mean / header = 'Mittelwerte jeweils zur Gruppe darunter'; run; Gives me the following image: How can I achieve that the number...
SAS(R) 9.3 ODS Graphics: Procedures Guide, Third EditionTell us...How satisfied are you with SAS documentation?Thank you for your feedback. Please choose a rating. How satisfied are you with SAS documentation overall? Very Dissatisfied Dissatisfied Neither dissatisfied or satisfied (OR neutral) ...
I'm trying to get a scatter plot to overlay my box plot with proc sgplot vbox. The box plot looks great but it's not showing the individual data points. I've exhaustively searched the forum, and this is what I could come up with: title "Individual Resting State Network Conn...
(drop=_freq_ _type_) median= n=/autoname; run; /* * combine data vertical */ data group_combined; set group_a group_a_stat group_b group_b_stat; run; /* * check GTL for individual graph */ proc sgplot data=group_combined tmplout="c:\temp\sgplot_gtl.sas"; vbox value_a / ...