[Rd] Different results for cos,sin,tan and cospi,sinpi,tanpi

2016-11-30 Thread Ei-ji Nakama
Hi, i try sin, cos, and tan. > sapply(c(cos,sin,tan),function(x,y)x(y),1.23e45*pi) [1] 0.5444181 0.8388140 1.5407532 However, *pi results the following > sapply(c(cospi,sinpi,tanpi),function(x,y)x(y),1.23e45) [1] 1 0 0 Please try whether the following becomes all right. diff -ruN R-3.3.2.orig

Re: [Rd] problem with normalizePath()

2016-11-30 Thread Evan Cortens
I found this as well. At our institution, our home directories are on network shares that are mapped to local drives. The default, it appears, is to set the location for libraries (etc) to the network share name (//computer//share/director/a/b/user) rather than the local drive mapping (H:/). Given

Re: [Rd] problem with normalizePath()

2016-11-30 Thread Laviolette, Michael
In researching another issue, I discovered a workaround: the network drive folder needs to be mapped to the local PC. setwd("//Hzndhhsvf2/data/OCPH/EPI/BHSDM/Group/Michael Laviolette/Stat tools") df1 <- readxl::read_excel("addrlist-4-MikeL.xls", 2) # fails, throws

[Rd] pmin/pmax issue with ordered factors

2016-11-30 Thread Erwan Le Pennec
Dear all, pmin/pmax used to work with ordered factors but fail now since this summer when those functions have tried to handle more cases. A simple way to trigger the issue is: > min(ordered(c(1,5,6))) [1] 1 Levels: 1 < 5 < 6 > pmin(ordered(c(1,5,6)), ordered(c(1,5,6))) Error in `mostattr