Hi Everyone, I have just started my Graduate degree, and for my meta-analysis course we are using SAS. I have never used this program, as my preferred STATS program in my undergrad was RStudio. I have managed to import my data set and generate a table for it in SASuniversity. I now need to make a funnel plot and forest plot, but do not even know where to start (and our course has no guidelines). If anyone is able to help me with this, I would be forever grateful! I have attached my data set, and below is my code I used to import and generate a table for the first steps of my homework. Code: PROC IMPORT DATAFILE="/folders/myfolders/sasuser.v94/MOZARTlecture4/Mozart_dataset.xlsx" OUT=WORK.mozart_data DBMS=XLSX REPLACE; RUN; /** Print the results. **/ PROC PRINT DATA=WORK.mozart_data; RUN;
... View more