Displaying 16 results from an estimated 16 matches for "gge".
Did you mean:
ge
2000 Dec 06
0
Stepwise Regression
...ers the
four main effects for addition or elimination in each iteration step.
What did I do wrong?
I'm using R version 1.1.1 on Windows NT.
(I'm sorry if this is a stupid question but I didn't find the answer in
the help file or the FAQs.)
Thanks in advance for any help.
Martina Erdbr?gge
Here is my code with results:
> lm44 <- lm(betamat2[, 2] ~ 1, data = fndaten, weights = fndaten$varin)
> step(lm44, ~ (A + B + C + D)^4)
Start: AIC= -20.5
betamat2[, 2] ~ 1
Df Sum of Sq RSS AIC
+ C 1 1.3500 2.5706 -25.2555
+ B 1 1.2323 2.6882 -24....
2001 Aug 13
1
optimization on a circle
...lobe) instead of a square
(resp. cube), since the optimum will be reached on the bounds.
Is there a function in R which could be used for this purpose? I'm using
optim() with method = "L-BFGS-B" for the optimization on a square or
cube.
Thanks in advance for any hints,
Martina Erdbr?gge
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not the subject !) To: r-help-request at stat....
2012 Jan 31
0
Error in linearHypothesis.mlm: The error SSP matrix is apparently of deficient rank
....28572868 0.2792041 913.3121882 1.145682e-26 * 0.82856098
2 Factor 5 175 0.02847626 1.2282989 0.8114224 5.429559e-01 0.01853948
$`Mauchly's Test for Sphericity`
Effect W p p<.05
2 Factor 0.6144546 0.3073226
$`Sphericity Corrections`
Effect GGe p[GG] p[GG]<.05 HFe p[HF] p[HF]<.05
2 Factor 0.8480886 0.5258849 0.9795716 0.5408084
> ezANOVA(data, dv = .(Measure.1), wid = .(Participant), within = .(Factor),
+ type = 3, detailed = T)
Note: model has only an intercept; equivalent type-III tes...
2007 Aug 24
7
Problem restarting client service ssh in client
Hello,
I want a simple operation in a puppet node like restarting the ssh
service if it was stopped. My site.pp is simple as this:
import "services/*"
node default {
include ssh
}
The services directory as a ssh.pp :
class ssh {
service { ssh:
ensure => running,
subscribe => File["/etc/ssh/sshd_config"]
}
}
I''ve stopped the ssh service in the
2008 Oct 15
0
R-help Digest, Vol 67, Issue 31
...omeone knows which function has replaced the GamSetup function in mgcv?
> With R 1.6 version we have GamSetup but this function doesn't exist with R
> 2.7.2 version
Check out the Changelog:
....
1.0-0
....
* Function GAMsetup() has been removed.
A quick perusal of the manual for mgcv suggests gam.setup() may be what
you want. See ?gam.setup
G
--
%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%
Dr. Gavin Simpson [t] +44 (0)20 7679 0522
ECRC, UCL Geography, [f] +44 (0)20 7679 0565
Pearson Building, [e] gavin.simpsonATNOSPAMucl....
2008 May 21
0
Errors in using gdb (PR#11496)
...ot; "More warnings befor R is loaded.pdf", and "Final set of warnings
before R begins.pdf" ).
Though I am able to run R in gdb mode, gdb behaves strangely when invoked
(see attached "Strange behavior of gdb.pdf" as well as "Rtest.c"). As you
can see, the debugger doesn't seem to iterate through the while loop in
order, but instead jumps around.
This example also brings up another issue regarding the runif function which
doesn't seem to behave as I would expect. If you could point out the problem
with the way my code invokes the function, that woul...
2024 Oct 04
0
apply
On 04.10.2024 11:13, Steven Yen wrote:
> Pardon me!!!
>
> What makes you think this is a homework question? You are not obligated
Otherwise you called cov()
Best,
Uwe Ligges
> to respond if the question is not intelligent enough for you.
>
> I did the following: two ways to calculate a covariance matrix but
> wonder how I might replicate the results with "apply". I am not too
> comfortable with the online do of apply.
>
>> set....
2024 Jul 12
1
grep
...ewhatc", "veryc","somewhatl",
> "veryl". The result should be an index 6:13 or 6,7,8,9,10,11,12,13. Note
> that they all contain "somewhat" and "very". Thanks.
Sounds like homework?
which(grep("very|somewhat", x))
Best,
Uwe Ligges
> est se t p g sig x.1.age 0.0341 0.0138 2.4766 0.0133 -3.8835e-04 **
> x.1.sleep -0.1108 0.0059 -18.6277 0.0000 -4.4572e-04 *** x.1.primary
> -0.0694 0.0289 -2.4002 0.0164 -9.9638e-06 ** x.1.middle -0.2909 0.0356
> -8.1657 0.0000 -1.4913e-05 *** x.1.high -0.4267 0.0463 -9.2118 0.000...
2023 Mar 06
1
legend: interplay between title and y.intersp
What about
plot(c(0,1), c(0,1), type="n")
legend("top", legend=c("", "a", ""), col=c("blue", "red", "green"),
title="test", y.intersp=c(1,-0.4), lwd=1)
(in recent versions of R)
Best,
Uwe
On 06.03.2023 11:34, Sigbert Klinke wrote:
> Hi,
>
> I think you are right, legend cannot do
2024 Aug 16
1
Is there some place where I can check a changelog / NEWS for the grid package?
...rials to start understanding the grid package or what other recommendations you have of introductions to that package (and their extensions...)
Paul MUrrell wrote some papers and a book, but there are also the
vignettes, type
vignette(package="grid")
to get an overview.
Best,
Uwe Ligges
> Best regards,
>
> Iago
>
>
>
>
>
>
>
>
> [[alternative HTML version deleted]]
>
> ______________________________________________
> R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see
> https://stat.ethz.ch/mailman/list...
2023 Apr 06
2
R does not run under latest RStudio
No, but you need to ask on an RStudio mailing list.
This one is about R.
Best,
Uwe Ligges
On 06.04.2023 11:28, Steven T. Yen wrote:
> I updated to latest RStudio (RStudio-2023.03.0-386.exe) but
> R would not run. Error message:
>
> Error Starting R
> The R session failed to start.
>
> RSTUDIO VERSION
> RStudio 2023.03.0+386 "Cherry Blossom " (3c5...
2023 Jun 02
1
Help sourcing datasets (.csv)
See ?data
On 28.05.2023 10:53, james carrigan wrote:
> Dear Sir or Madam
> I?m trying to compile a collection of datasets that require use of the following hypothesis tests.
> Are there datasets within the R library that I can get access to?
> Kind regards
> James Carrigan
>
> Hypothesis Testing
> t.test(X,Y)
> ? performs a two sample t-test between X and Y
>
2024 Oct 04
3
apply
Homework questions are not answered on this list.
Best,
Uwe Ligges
On 04.10.2024 10:32, Steven Yen wrote:
> The following line calculates standard deviations of a column vector:
>
> se<-apply(dd,1,sd)
>
> How can I calculate the covariance matrix using apply? Thanks.
>
> ______________________________________________
> R-help at r...
2020 Oct 05
0
unable to access index for repository...
...rce:
"Packages for R >= 1.7.0 and R < 3.2.0 are available from
https://cran-archive.r-project.org/bin/windows/contrib/"
We do not hold binaries of several year old versions of R on CRAN.
Note that R 3.0.0 is 7 years old. You shoudl realy consider to update to
4.0.2.
Best,
Uwe Ligges
On 05.10.2020 09:56, Steven Yen wrote:
> I had to install/use an older version of (R-3.0.3) for a reason. While
> installing a package from CRAN (either in RStudio or R), I received the
> following warning message saying unable to access index for repository
> http://cran.rstudio.c...
2020 Oct 05
0
unable to access index for repository...
Then you'd rather need
install.packages("aod",repos='https://cran-archive.r-project.org')
or use the contrib.url argument.
Best,
Uwe Ligges
On 05.10.2020 10:47, Steven Yen wrote:
> Thanks for the help. I do update to the latest R-4.0.2. As I said, for
> reasons that's hard to explain, some of my tasks are better handled with
> an older version of R, in this case R-3.0.3. Please just help me install
> packages succ...
2020 Oct 08
0
unable to access index for repository...
Drop the RStudio repos.
Best,
Uwe Ligges
On 05.10.2020 11:10, Steven Yen wrote:
> Thanks. I did as suggested but still received a warning, though the
> installation went through. Anything I could do to install without the
> warning message.
>
> What is the contrib.url argument?
>
> > install.packages("a...