Displaying 8 results from an estimated 8 matches for "taschenberg".
Did you mean:
taschenberger
2011 Nov 08
2
compare linear regressions
Hi,
I'm trying to compare two linear regressions. I'm using the
following approach:
##################
xx<-1:100
df1 <- data.frame(x = xx, y = xx * 2 + 30 + rnorm(n=length(xx),sd=10), g = 1)
df2 <- data.frame(x = xx, y = xx * 4 + 9 + rnorm(n=length(xx),sd=10), g = 2)
dta <- rbind(df1, df2)
dta$g <- factor(dta$g)
2018 Mar 21
0
R 3.4.4, internet access fails on Windows XP
On 21/03/2018 8:27 AM, Holger Taschenberger wrote:
> I can install and run R 3.4.4 on Windows XP (32bit). However, calling "Update Packages..." or "Html help" from the RGui.exe main menu fails with a Windows MessageBox saying:
>
> "The procedure entry point IdnToAscii could not be located in the dynamic l...
2011 Oct 31
2
one sample Wilcoxon test using 'coin'
Hi,
R allows me to run a one sample Wilcoxon test like this:
wilcox.test(c(1,3.5,2.1,4,1.5,5), mu=2, exact=TRUE)
The function 'wilcoxsign_test' from the package 'coin' should (I
suppose) be able to calculate exact p values even if there are ties in
the ranks. However, I couldn't find information on how to run a one
sample test using 'wilcoxsign_test' like in the
2018 Mar 21
3
R 3.4.4, internet access fails on Windows XP
I can install and run R 3.4.4 on Windows XP (32bit). However, calling "Update Packages..." or "Html help" from the RGui.exe main menu fails with a Windows MessageBox saying:
"The procedure entry point IdnToAscii could not be located in the dynamic link library KERNEL32.dll"
and the following text printed to the RGui console window:
"...
In addition: Warning
2018 Mar 22
0
R 3.4.4, internet access fails on Windows XP
On 22/03/2018 5:28 AM, Holger Taschenberger wrote:
> Dear Duncan,
>
> thank you for your reply.
>
> On Wed, 21 Mar 2018 11:58:15 -0400
> Duncan Murdoch <murdoch.duncan at gmail.com> wrote:
>
>
>> The Windows FAQ 2.2 says, "Windows XP is no longer supported", so I think you're...
2018 Mar 22
1
R 3.4.4, internet access fails on Windows XP
Dear Duncan,
thank you for your reply.
On Wed, 21 Mar 2018 11:58:15 -0400
Duncan Murdoch <murdoch.duncan at gmail.com> wrote:
> The Windows FAQ 2.2 says, "Windows XP is no longer supported", so I think you're out of luck. XP went past "end-of-life" in 2014.
>
on <https://cran.r-project.org/bin/windows/base/README.R-3.4.4> it says
"R
2012 Jul 12
1
permutation test on paired samples
Hi,
I'm trying to run a permutation test on paired samples.
First I tried the package "exactRankTests":
require("exactRankTests")
x <- c(1.83,0.50,1.62,2.48,1.68,1.88,1.55,3.06,1.30)
y <- c(0.878,0.647,0.598,2.05,1.06,1.29,1.06,3.14,1.29)
wilcox.test(x,y,paired = TRUE,alternative = "greater")
perm.test(y,x,paired = TRUE,exact = TRUE,alternative =
2017 Sep 08
0
one sample permutation test using package 'coin'
Using the package ?exactRankTests? one can execute a one-sample permutation test for a hypothesized location parameter of 0 like:
perm.test(rnorm(30,0))
The package ?exactRankTests? seems now to be deprecated in favor of the ?coin? package which as I understand is a superset of ?exactRankTests? in terms of functionality.
The ?coin? package allows one to run a two-sample permutation test using