Re: [R] Newbie: Controlling legends in graphs

2023-05-12 Thread Rui Barradas
Às 14:24 de 12/05/2023, Kevin Zembower via R-help escreveu: Hello, I'm trying to create a line graph with a legend, but have no success controlling the legend. Since nothing I've tried seems to work, I must be doing something systematically wrong. Can anyone point this out to me? Here's my data:

[R] Newbie: Controlling legends in graphs

2023-05-12 Thread Kevin Zembower via R-help
Hello, I'm trying to create a line graph with a legend, but have no success controlling the legend. Since nothing I've tried seems to work, I must be doing something systematically wrong. Can anyone point this out to me? Here's my data: > weights # A tibble: 1,246 × 3 Date J

[R] Pairwise comparison test

2023-05-12 Thread Thomas Subia via R-help
Colleague, smokers  <- c( 83, 90, 129, 70 ) patients <- c( 86, 93, 136, 82 ) pairwise.prop.test(smokers, patients) # Output Pairwise comparisons using Pairwise comparison of proportions data:  smokers out of patients    1    2    3 2 1.000 -     - 3 1.

Re: [R] is.na(strptime (...)) return TRUE on FreeBSD

2023-05-12 Thread Jinsong Zhao
On 2023/5/12 18:16, Rasmus Liland wrote: Hi! I ran the code (d <- strptime("1970-01-01 12:00:00 UTC", "%Y-%m-%d %H:%M:%OS", tz = "")) is.na(d) dput(unclass(d)) as.POSIXct(d) (d <- is.na(strptime("1970-01-03 12:00:00 UTC", "%Y-%m-%d %H:%M:%OS", tz = '

Re: [R] win110 + R 4.3.0 dowload only when method = "wininet"

2023-05-12 Thread Howard, Tim G (DEC) via R-help
Also note that with R version 4.2.1 and later, there's another change for computers within many corporate firewall systems (that monitor network traffic). The result is that in the default settings R can't connect out to https connections (and thus can't install or update packages). You just

Re: [R] is.na(strptime (...)) return TRUE on FreeBSD

2023-05-12 Thread Rasmus Liland
Hi! I ran the code (d <- strptime("1970-01-01 12:00:00 UTC", "%Y-%m-%d %H:%M:%OS", tz = "")) is.na(d) dput(unclass(d)) as.POSIXct(d) (d <- is.na(strptime("1970-01-03 12:00:00 UTC", "%Y-%m-%d %H:%M:%OS", tz = ''))) is.na(d) dput(unclass(d))