Hello everyone, I am new to SAS. I want to assess the association between meat intake and **bleep** quality parameters by using restricted cubic splines in Multivarate Linear Regression. I used the following syntax for Multivarate Linear Regression. %include "F:\sas\nonlinear_curve\RCS_Reg.sas";
%RCS_Reg(infile=fenxi_4_1, Main_spline_var=meat, ref_val=0, typ_reg=lin, dep_var=Log_volu,
Oth_spline_var1=A_age, Oth_spline_var2=BMI, Oth_spline_var3=I_tvdur, Oth_spline_var4=I_pa, Oth_spline_var5=f_en,Oth_spline_var6=factor1, Oth_splin e_var7=factor2, Oth_spline_var8=factor3, Oth_spline_var9=factor4, Oth_spline_var10=factor5,
adjust_var=O_ad smoke income,
avk_msv=0, knots_msv=5 50 95,x_ref_line=0,y_ref_line=1,specif_val=46.19 130.975 243.14,no_title=1,no_label_x=1,no_label_y=1,no_legend=1,display_knots=1);
quit;
Generate "Graph 1" after running. Y_AXIS list the Log_volu "Difference [95%]" for values of meat. However, I want see the Y_AXIS that list the values of Log_volu for values of meat in my SAS output. I was wondering if anyone can help me with the syntax. Thank you in advance!
... View more