Displaying 4 results from an estimated 4 matches for "sin2".
Did you mean:
pin2
2005 Jul 28
1
conversion from SAS
...datepart(date));
run;
proc sort data=chla_italian; by station; run;
/* Check bloom for seasonal cycle outliers */
data sort_dataset;
set chla_italian;
chla=chl_a;
dayno=date-mdy(1,1,year)+1;
cos1=cos(2*3.14*dayno/365);
sin1=sin(2*3.14*dayno/365);
cos2=cos(4*3.14*dayno/365);
sin2=sin(4*3.14*dayno/365);
cos3=cos(6*3.14*dayno/365);
sin3=sin(6*3.14*dayno/365);
cos4=cos(8*3.14*dayno/365);
sin4=sin(8*3.14*dayno/365);
bloom=0;
w_chla=1/chla/chla;
run;
ODS listing close;
%macro sort_event(cut_off,last=0);
/*proc glm data=sort_dataset;
class year;
model logc...
2002 Nov 05
2
2.5.6 release
On Tue, Nov 05, 2002 at 08:37:00AM -0800, Martin Pool wrote:
> On 10 Oct 2002, "Green, Paul" <Paul.Green@stratus.com> wrote:
> > No new CVS messages have appeared on the rsync-cvs archives since August
> > 30th. This seems rather odd-- perhaps a daemon stopped working? If there
> > has truly been no activity since that date, I apologize for
> >
2007 Dec 19
0
leaps
...ke to make sure that I
got the output from (3) right. The ouput of (3) tells me that the highest
R^2 value was reached after 8 iterations and there are only 8 significant
predictors in this model ??? In addition the only significant frequencies
(predictors) left are:
cos1, cos2, cos4, cos7, sin1,sin2, sin3, sin5
I got this information interactively. But I'm in troubles at extracting it
automatically.
Any suggestion ?
Question: Do I have to run "step" in advance of "regsubsets" for a
first-pass model pruning or may I run "regsubsets" on the original model
bri...
1997 May 09
2
R-alpha: R-0.49 / S-plus: "default argument evaluation" bugs and woes
...Martin Maechler, Date: 9 May 97.
c(x=x, y=y, sin=sin)
}
R> sintest2(1)
[[1]]
[1] 1
[[2]]
[1] 2
[[3]]
<primitive: sin>
--------------- is almost okay,
the buglet being that the names have been dropped from the list.
But watch this:
S> sintest2(1)
function(x = 1, y = 2, sin.x)
sin2 = .Internal(sin(x), "do_math", T, 109)
--- returning a function
((now we see, why S's way of treating functions as
lists sometimes badly sucks)).
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
r-devel mailing list -- Read http://www.ci.tuwien.ac....