search for: strt2

Displaying 11 results from an estimated 11 matches for "strt2".

Did you mean: str2
2017 Aug 23
3
boot.stepAIC fails with computed formula
...ter [mailto:bgunter.4567 at gmail.com] Sent: 22 August 2017 20:38 To: Stephen O'hagan <SOhagan at manchester.ac.uk> Cc: r-help at r-project.org Subject: Re: [R] boot.stepAIC fails with computed formula OK, here's the problem. Continuing with your example: strt1 <- lm(y1 ~1, dat) strt2 <- lm(frm1,dat) > strt1 Call: lm(formula = y1 ~ 1, data = dat) Coefficients: (Intercept) 41.73 > strt2 Call: lm(formula = frm1, data = dat) Coefficients: (Intercept) 41.73 Note that the formula objects of the lm object are different: strt2 does not evaluate the formula...
2017 Aug 22
0
boot.stepAIC fails with computed formula
OK, here's the problem. Continuing with your example: strt1 <- lm(y1 ~1, dat) strt2 <- lm(frm1,dat) > strt1 Call: lm(formula = y1 ~ 1, data = dat) Coefficients: (Intercept) 41.73 > strt2 Call: lm(formula = frm1, data = dat) Coefficients: (Intercept) 41.73 Note that the formula objects of the lm object are different: strt2 does not evaluate the formula...
2017 Aug 23
0
boot.stepAIC fails with computed formula
...; Sent: 22 August 2017 20:38 > To: Stephen O'hagan <SOhagan at manchester.ac.uk> > Cc: r-help at r-project.org > Subject: Re: [R] boot.stepAIC fails with computed formula > > OK, here's the problem. Continuing with your example: > > strt1 <- lm(y1 ~1, dat) > strt2 <- lm(frm1,dat) > > >> strt1 > > Call: > lm(formula = y1 ~ 1, data = dat) > > Coefficients: > (Intercept) > 41.73 > >> strt2 > > Call: > lm(formula = frm1, data = dat) > > Coefficients: > (Intercept) > 41.73 > > &gt...
2017 Aug 22
4
boot.stepAIC fails with computed formula
I'm trying to use boot.stepAIC for feature selection; I need to be able to specify the name of the dependent variable programmatically, but this appear to fail: In R-Studio with MS R Open 3.4: library(bootStepAIC) #Fake data n<-200 x1 <- runif(n, -3, 3) x2 <- runif(n, -3, 3) x3 <- runif(n, -3, 3) x4 <- runif(n, -3, 3) x5 <- runif(n, -3, 3) x6 <- runif(n, -3, 3) x7
2023 Aug 20
3
Issues when trying to fit a nonlinear regression model
...0, 16, 12, 8, 36, 32, 36, 20, 26, 34, 28)), row.names = c(NA, -15L), class = "data.frame") I did the following to try to fit a nonlinear regression model: #First, Procedure to Find Starting (initial) Values For Theta1, Theta2, and Theta3 mymod2 <- y ~ theta1 - theta2*exp(-theta3*x) strt2 <- c(theta1 = 1, theta2 = 2, theta3 = 3) trysol2<-nlxb(formula=mymod2, data=mod14data2_random, start=strt2, trace=TRUE) trysol2 trysol2$coefficients[[3]] #Fitting nonlinear Regression Model Using Starting Values From Previous Part nonlinearmod2 <- nls(mymod2, start = list(theta1 = trysol...
2023 Aug 20
1
Issues when trying to fit a nonlinear regression model
...), row.names = c(NA, -15L), class = "data.frame") > > I did the following to try to fit a nonlinear regression model: > > #First, Procedure to Find Starting (initial) Values For Theta1, Theta2, and > Theta3 > > mymod2 <- y ~ theta1 - theta2*exp(-theta3*x) > > strt2 <- c(theta1 = 1, theta2 = 2, theta3 = 3) > > trysol2<-nlxb(formula=mymod2, data=mod14data2_random, start=strt2, > trace=TRUE) > trysol2 > trysol2$coefficients[[3]] > > #Fitting nonlinear Regression Model Using Starting Values From Previous > Part > nonlinearmod2 &lt...
2023 Aug 20
2
Issues when trying to fit a nonlinear regression model
...a.frame") >> >> I did the following to try to fit a nonlinear regression model: >> >> #First, Procedure to Find Starting (initial) Values For Theta1, Theta2, >> and >> Theta3 >> >> mymod2 <- y ~ theta1 - theta2*exp(-theta3*x) >> >> strt2 <- c(theta1 = 1, theta2 = 2, theta3 = 3) >> >> trysol2<-nlxb(formula=mymod2, data=mod14data2_random, start=strt2, >> trace=TRUE) >> trysol2 >> trysol2$coefficients[[3]] >> >> #Fitting nonlinear Regression Model Using Starting Values From Previous >...
2023 Aug 20
1
Issues when trying to fit a nonlinear regression model
...I did the following to try to fit a nonlinear regression model: >>> >>> #First, Procedure to Find Starting (initial) Values For Theta1, Theta2, >>> and >>> Theta3 >>> >>> mymod2 <- y ~ theta1 - theta2*exp(-theta3*x) >>> >>> strt2 <- c(theta1 = 1, theta2 = 2, theta3 = 3) >>> >>> trysol2<-nlxb(formula=mymod2, data=mod14data2_random, start=strt2, >>> trace=TRUE) >>> trysol2 >>> trysol2$coefficients[[3]] >>> >>> #Fitting nonlinear Regression Model Using Starti...
2023 Aug 20
1
Issues when trying to fit a nonlinear regression model
...it a nonlinear regression model: >>>> >>>> #First, Procedure to Find Starting (initial) Values For Theta1, Theta2, >>>> and >>>> Theta3 >>>> >>>> mymod2 <- y ~ theta1 - theta2*exp(-theta3*x) >>>> >>>> strt2 <- c(theta1 = 1, theta2 = 2, theta3 = 3) >>>> >>>> trysol2<-nlxb(formula=mymod2, data=mod14data2_random, start=strt2, >>>> trace=TRUE) >>>> trysol2 >>>> trysol2$coefficients[[3]] >>>> >>>> #Fitting nonlinear R...
2023 Aug 20
1
Issues when trying to fit a nonlinear regression model
...>>>>> >>>>> #First, Procedure to Find Starting (initial) Values For Theta1, >>>>> Theta2, and >>>>> Theta3 >>>>> >>>>> mymod2 <- y ~ theta1 - theta2*exp(-theta3*x) >>>>> >>>>> strt2 <- c(theta1 = 1, theta2 = 2, theta3 = 3) >>>>> >>>>> trysol2<-nlxb(formula=mymod2, data=mod14data2_random, start=strt2, >>>>> trace=TRUE) >>>>> trysol2 >>>>> trysol2$coefficients[[3]] >>>>> >>>&...
2013 Oct 03
2
SSweibull() : problems with step factor and singular gradient
SSweibull() :  problems with step factor and singular gradient Hello I am working with growth data of ~4000 tree seedlings and trying to fit non-linear Weibull growth curves through the data of each plant. Since they differ a lot in their shape, initial parameters cannot be set for all plants. That’s why I use the self-starting function SSweibull(). However, I often got two error messages: