search for: thosjleeper

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

2019 Feb 21
5
Return/print standard error in t.test()
...atter) is that you can make things work the way you like. Best, John ------------------------------------------------- John Fox, Professor Emeritus McMaster University Hamilton, Ontario, Canada Web: http::/socserv.mcmaster.ca/jfox > On Feb 21, 2019, at 3:57 PM, Thomas J. Leeper <thosjleeper at gmail.com> wrote: > > A recent thread on Twitter [1] by a Stata user highlighted that t.test() > does not return or print the standard error of the mean difference, despite > it being calculated by the function. > > I know this isn?t the kind of change that?s likely to be...
2020 Oct 05
3
Internet access and R CMD make check-devel
I am trying to install R on CentOS (either 7 or 8, behavior is the same) in an environment behind a firewall and while I am able to run: R CMD make check I am unable to run: R CMD make check-devel These latter tests fail. The failure occurs in the internet access if() conditional statement in these two tests: https://svn.r-project.org/R/trunk/tests/internet.R
2019 Feb 23
1
Return/print standard error in t.test()
...> ------------------------------------------------- >> John Fox, Professor Emeritus >> McMaster University >> Hamilton, Ontario, Canada >> Web: http::/socserv.mcmaster.ca/jfox >> >>> On Feb 21, 2019, at 3:57 PM, Thomas J. Leeper <thosjleeper at gmail.com> wrote: >>> >>> A recent thread on Twitter [1] by a Stata user highlighted that t.test() >>> does not return or print the standard error of the mean difference, despite >>> it being calculated by the function. >>>...
2020 Oct 05
0
Internet access and R CMD make check-devel
...nd not cause the whole process to return a non-zero value. I don't have time right this second to test this though. Is that not the behavior you're seeing in practice? Or do the tests hang so the process never completes, or...? Best, ~G On Mon, Oct 5, 2020 at 9:49 AM Thomas J. Leeper <thosjleeper at gmail.com> wrote: > I am trying to install R on CentOS (either 7 or 8, behavior is the > same) in an environment behind a firewall and while I am able to run: > > R CMD make check > > I am unable to run: > > R CMD make check-devel > > These latter tests fail. Th...
2019 Feb 21
0
Return/print standard error in t.test()
...like. > > Best, > John > > ------------------------------------------------- > John Fox, Professor Emeritus > McMaster University > Hamilton, Ontario, Canada > Web: http::/socserv.mcmaster.ca/jfox > > > On Feb 21, 2019, at 3:57 PM, Thomas J. Leeper <thosjleeper at gmail.com> > wrote: > > > > A recent thread on Twitter [1] by a Stata user highlighted that t.test() > > does not return or print the standard error of the mean difference, > despite > > it being calculated by the function. > > > > I know this isn?t t...
2019 Feb 22
0
Return/print standard error in t.test()
...you like. > > Best, > John > > ------------------------------------------------- > John Fox, Professor Emeritus > McMaster University > Hamilton, Ontario, Canada > Web: http::/socserv.mcmaster.ca/jfox > >> On Feb 21, 2019, at 3:57 PM, Thomas J. Leeper <thosjleeper at gmail.com> wrote: >> >> A recent thread on Twitter [1] by a Stata user highlighted that t.test() >> does not return or print the standard error of the mean difference, despite >> it being calculated by the function. >> >> I know this isn?t the kind of cha...
2012 Apr 07
4
Display instruction text on package load
I'm currently working on a new package for R that interfaces with an API. Most of the package's functionality requires users to supply an access key that allows the package to work with the API. I want to display text immediately upon loading the package that instructs/reminds users to enter their access key before attempting to do anything (as the package won't really work without
2017 Mar 26
1
Documentation of model.frame() and get_all_vars()
Hi everyone, This is about documentation for the model.frame() page. The get_all_vars() function (added in R 2.5.0) is a great addition, but the behavior of its '...' argument is different from that of model.frame() with which it is documented and this creates ambiguity. The current docs read: \item{\dots}{further arguments such as \code{data}, \code{na.action}, \code{subset}. Any
2015 Jun 05
3
R-devel Digest, Vol 148, Issue 5
It's disappointing that many packages do not have a NEWS file. Perhaps CRAN should require NEWS or CHANGELOG, as long as the system is being reformed to potentially accommodate markdown anyway. -Thomas Thomas J. Leeper http://www.thomasleeper.com On Fri, Jun 5, 2015 at 12:00 PM, <r-devel-request at r-project.org> wrote: > Date: Thu, 04 Jun 2015 12:39:34 -0400 > From: Duncan
2015 Jan 11
0
Bug in URLencode and patch
I believe the implementation of utils::URLencode is non-compliant with RFC 3986, which it claims to implement (http://tools.ietf.org/html/rfc3986). Specifically, its percent encoding uses lowercase letters a-f, which it should use uppercase letters A-F. Here's what URLencode currently produces: library("utils") URLencode("*+,;=:/?", reserved = TRUE) #
2017 Mar 30
0
get_all_vars() does not handle rhs matrices in formulae
Hello again, It appears that get_all_vars() incorrectly handles model formulae that use a right-hand side (rhs) matrix. For example, consider these two substantively identical models: # model using named variables mpg <- mtcars$mpg wt <- mtcars$wt hp <- mtcars$hp m1 <- lm(mpg ~ wt + hp) # model using matrix y <- mtcars$mpg x <- cbind(mtcars$wt, mtcars$hp) m2 <- lm(y ~ x)