. I am using the sample code from SAS below but I am not sure where to get the standard deviation? If you could please tell me how to find that it would be helpful. Thank you
You need to provide that based on your knowledge of the underlying data. It can be estimated. There are some cases where post hoc power analysis is appropriate, make sure your case is one - it's usually not considered a good idea at all.
Yes it is not a good idea to do a post hoc power analysis (almost all of the literature says this), however it is a specific request that I cannot ignore.
If I have 4 groups means cannot I just use those to calculate a standard deviation estimate?
Would it be appropriate to take the 4 means that I have calculated and run them through a code like below to get the standard deviation or since they are mean values is that an inappropriate way? Thank you
proc sql; create table want as select *, std(150.3684, 63.59701, 53.16667, 37.21429 ) as sd_a from have; quit;