Displaying 1 result from an estimated 1 matches for "liland".
Did you mean:
leland
2023 Mar 16
3
Trying to learn how to write an "advanced" function
...<- y+rnorm(10)
z <- c(rep(1,5),rep(2,5))
# Show what x, y and z look like
rbind(x,y,z)
# run formula y~x
JD <- doit(y~x)
JD
# run formula y~x+z
JD2 <- doit(y~x+z)
JD2
________________________________________
From: R-help <r-help-bounces at r-project.org> on behalf of Rasmus Liland <jral at posteo.no>
Sent: Thursday, March 16, 2023 8:42 AM
To: r-help
Subject: Re: [R] Trying to learn how to write an "advanced" function
On 2023-03-16 12:11 +0000, Sorkin, John wrote:
> (1) can someone point me to an
> explanation of match.call or match
> that can be und...