I think I've followed the EFS internal explanation in the EFS knowledgebase alright. Whith the exception of a few areas that are a little unclear.
On line 31 I put the
if xstudy = null;
And on line 35
if (xstudy == null) avg =
but I don't understand what it does or why it's needed, why can't you just start with avg = ??
I guess that line 35 and 37 is not returning a series (another concept I don't fully understand. I have read some of the explanations by Jason and for some reason can't seem to wrap my mind around it)
The last thing that was confusing, is that there are two return statements in the example. In the second return statement the source.getValue (0) is confusing. Does source mean open, close or does it mean the name of of the study??
Any help is appreciated.
Thanks,
John
On line 31 I put the
if xstudy = null;
And on line 35
if (xstudy == null) avg =
but I don't understand what it does or why it's needed, why can't you just start with avg = ??
I guess that line 35 and 37 is not returning a series (another concept I don't fully understand. I have read some of the explanations by Jason and for some reason can't seem to wrap my mind around it)
The last thing that was confusing, is that there are two return statements in the example. In the second return statement the source.getValue (0) is confusing. Does source mean open, close or does it mean the name of of the study??
Any help is appreciated.
Thanks,
John
Comment