Displaying 2 results from an estimated 2 matches for "cifunc".
Did you mean:
ifunc
2000 Jul 05
2
couldn't find function "..."
...on using R and I need help figuring
out the error I have indicated in the Subject line above. The purpose
of the function is not to "wow" anyone, but just to serve as a stepping
stone so that I might write more complicated functions in the future.
First I created my function named "CIfunc" and saved into the current
directory using the "save" command.
function(Mean, SD, N, Sig) {
if (N > 30) { Zscore <- pnorm(Sig)} else {Zscore <- pt(Sig,N-1)}
Zscore
UpperCI <- Mean + Zscore * SD / sqrt(N)
UpperCI
LowerCI <- Mean - Zscore * SD / sqrt(...
2000 Jul 06
0
Fwd: Re: couldn't find function ...
...the error I have indicated in the Subject line above. The purpose
> > of the function is not to "wow" anyone, but just to serve as a stepping
> > stone so that I might write more complicated functions in the future.
> >
> > First I created my function named "CIfunc" and saved into the current
> > directory using the "save" command.
> >
> > function(Mean, SD, N, Sig) {
> >
> > if (N > 30) { Zscore <- pnorm(Sig)} else {Zscore <- pt(Sig,N-1)}
> > Zscore
> >
> > UpperCI <- Mean...