09-01-2015
sas9
Calcite | Level 5
Member since
04-29-2013
- 4 Posts
- 1 Likes Given
- 0 Solutions
- 0 Likes Received
-
Latest posts by sas9
Subject Views Posted 1861 04-30-2013 10:57 AM 1861 04-29-2013 10:19 PM 1861 04-29-2013 05:43 PM 1959 04-29-2013 03:06 PM -
Activity Feed for sas9
- Posted Re: plot mean with std error on Graphics Programming. 04-30-2013 10:57 AM
- Liked Re: plot mean with std error for PGStats. 04-30-2013 10:56 AM
- Posted Re: plot mean with std error on Graphics Programming. 04-29-2013 10:19 PM
- Posted Re: plot mean with std error on Graphics Programming. 04-29-2013 05:43 PM
- Posted plot mean with std error on Graphics Programming. 04-29-2013 03:06 PM
-
Posts I Liked
Subject Likes Author Latest Post 1
04-30-2013
10:57 AM
Thank you.. your idea of >0 removed the log problem. I did use the correct dataset in my program but i guess typed it wrong in the sample code that i sent. I am sorry .Thank you very much though.
... View more
04-29-2013
10:19 PM
Thank you Rick for getting back to me. variable(dose) values are for example 1 1 1 1 1 1.5 1.6 ... data ds(keep =usubjid dose); set datax; where dose ne . ; dose1 =log(dose); run; when i do this where ever dose values are equal to 1 i get dose1 =0 i get a note in logafter i run that part of the code as "mathematical operations could not be performed "and there is "an invalid argument to function log". then i did proc means data =datax ; by usubjid; var dose1; output out =datax1 n=n mean=mean stderr=stderr; run; the datax1 dataset has values where mean=o and std err=0 and also some values where stderr =missing.
... View more
04-29-2013
05:43 PM
Thankx for reaching out to me. I do have logarithmic values of the variable as zero since there are some values of the variable which are 1 and when i take log(1) it gives me zero.further to that i take mean of the log value of the variable and st error . the mean as well as stderror comes as missing. all i want to do is take the log of a variable and then plot mean of the log with the stderror.but the variable has some 1 values.
... View more
04-29-2013
03:06 PM
I am trying to take the mean of the log of a variable. There are some values of the variable which is 1. so the log value will be "0"(zero) value . then i am supposed to take the mean of all the values that contains some '0' too and plot against std error. so when i do proc means i get missing mean as well as std error . i am suppose to plot this mean of the log value of the variable with the std error. Can anyone please guide me to overcome this problem.
... View more