+ Reply to Thread
Results 1 to 7 of 7

Thread: Calculating intrasubject variability

  1. #1
    Points: 3,196, Level: 34
    Level completed: 98%, Points required for next Level: 4

    Posts
    16
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Calculating intrasubject variability



    I'm wondering which is the proper approach for an assessment of intrasubject variabilty.

    I have a series of patients of whom I have taken a parameter (contineous variable x) on 4 different days. How to check for the intrasubject variability?

    What additionally complicates the matter is, by the virtue of experimental design, I already expect a uniform trend between the 4 readings. For example Expt1, 2, 3 and 4 should show a steady decrease of the variable x. The results are haywire now and what I expect is the increased intrasubject variabilty is causing this. How to find it out?

    Thank you in advance.

    I have heard of mixed Model ANOVA which could be used here. But not sure of how to go about it

  2. #2
    Points: 3,472, Level: 36
    Level completed: 82%, Points required for next Level: 28

    Location
    Ithaca, NY
    Posts
    255
    Thanks
    0
    Thanked 1 Time in 1 Post
    If you just want an estimate of intrasubject variability, not accounting for other variables, just put in subject as a random factor. That would be your only independent variable. Your DV is whatever you want the variability for.

    You'll have to use a mixed models procedure--Proc MIXED in SAS, Mixed Models in SPSS, etc.

    If you tell me which software you're using, I can tell you how to do it (depending on which one you use).

    Karen
    The Analysis Factor
    http://TheAnalysisFactor.com

  3. #3
    Points: 3,196, Level: 34
    Level completed: 98%, Points required for next Level: 4

    Posts
    16
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Thank you Karen.

    I use SAS.

    I have the same variable reading taken on four different days. Now I have to check the intrasubject variability.

    In SAS I could test only variables on two days. Can I check the intrasubject variabilty considering all the four resdings?

    What is the exact meaning of intrasubject CV .. I am getting something like 93% . What does that actually mean? (My stats knowledge is limited, as actually i am a physician)

    Thank you very much

  4. #4
    Points: 3,196, Level: 34
    Level completed: 98%, Points required for next Level: 4

    Posts
    16
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Hi Karen,

    Can you also tell me how to do it in SAS? That would be a great help.

  5. #5
    Points: 3,472, Level: 36
    Level completed: 82%, Points required for next Level: 28

    Location
    Ithaca, NY
    Posts
    255
    Thanks
    0
    Thanked 1 Time in 1 Post
    Hi Placebo,

    I don't have SAS in front of me, and honestly, it's been a while since I've done one of these, so this is off the top of my head (maybe someone could confirm this for me?).

    PROC Mixed;
    Model DV= ;
    RANDOM Subid;
    run;

    Where Subid is the subject ID number and DV is the variable you want to measure the intrasubject variance of.

    I don't know what you mean by you could only test the variance on two days. There is no reason to not include all four, as long as all four day's measurements are in the same column.

    Karen
    The Analysis Factor
    http://TheAnalysisFactor.com

  6. #6
    Points: 3,196, Level: 34
    Level completed: 98%, Points required for next Level: 4

    Posts
    16
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Thank you Karen,

    We could calculate the intrasubject CV.

    There is another doubt.

    For the calculation of intrasubject CV on four different days, the assumption is that the experimental set up is identical on all the four days. But in my case I'm doing four experiments on 4 different days over six months. By the virtue of the design of experiment, I have to expect a downward trend of the variable from day 1 - day 4. Is there any correction in Mixed model ANOVA, to account for this already expected downward trend. Downward trend can be calculated by taking means of all the 100 patients.

    Thank you

    Placebo.
    www.clinpharm.********.com

  7. #7
    Points: 3,472, Level: 36
    Level completed: 82%, Points required for next Level: 28

    Location
    Ithaca, NY
    Posts
    255
    Thanks
    0
    Thanked 1 Time in 1 Post

    Quote Originally Posted by placebo View Post
    Thank you Karen,

    We could calculate the intrasubject CV.

    There is another doubt.

    For the calculation of intrasubject CV on four different days, the assumption is that the experimental set up is identical on all the four days. But in my case I'm doing four experiments on 4 different days over six months. By the virtue of the design of experiment, I have to expect a downward trend of the variable from day 1 - day 4. Is there any correction in Mixed model ANOVA, to account for this already expected downward trend. Downward trend can be calculated by taking means of all the 100 patients.

    Thank you

    Placebo.
    www.clinpharm.********.com
    Hi Placebo,

    I have to say, I'm at the point of giving advice without being sure I exactly understand the experiment.

    That said, if what you're saying is that you want to measure the intrasubject variability of a variable, which I will call DV, after accounting for the fixed and expected effect of Day, you would enter Day as a fixed effect in the model.

    PROC Mixed;
    CLASS Subid Day;
    Model DV= Day;
    RANDOM Subid;
    run;

    I realized I forgot the class statement in the previous code.

    If you expect the effect of Day to be a linear downward trend, you would leave it out of the class statement. If you leave it out, it will be treated as continuous and the model will fit a slope. If you put it in the class statement, it will be treated as categorical, and the model will estimate the difference in means on the four days.

    Can anyone else confirm my code?

    Karen
    The Analysis Factor
    http://TheAnalysisFactor.com

+ Reply to Thread

Similar Threads

  1. Variability
    By olafsdot in forum Psychology Statistics
    Replies: 6
    Last Post: 03-23-2011, 04:11 AM
  2. Variability of the Sum
    By derekbessette in forum Applied Statistics
    Replies: 1
    Last Post: 09-01-2010, 08:47 AM
  3. Intraobserver variability
    By stat_18 in forum Statistics
    Replies: 0
    Last Post: 03-16-2010, 04:44 AM
  4. Variability help
    By onyanac in forum Statistics
    Replies: 1
    Last Post: 09-12-2008, 01:54 PM
  5. Variability
    By Amjad in forum Statistics
    Replies: 2
    Last Post: 02-01-2006, 09:49 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts








Advertise on Talk Stats