Re: [Rd] VPAT OR Accessibility Conformance Report Request

2024-02-15 Thread Ben Bolker
There was a recent thread here started by someone asking a similar question. https://stat.ethz.ch/pipermail/r-devel/2024-January/083120.html You should probably start by going through all of that thread, but the bottom line is that: * R is in fact very accessible to people with a wide r

[Rd] VPAT OR Accessibility Conformance Report Request

2024-02-15 Thread Zachary Benner
To Whom It May Concern, My name is Zach Benner and I am the Accessibility (A.D.A.-Americans with Disabilities Act) Coordinator here at University of Maine at Machias. I am reaching out on the behalf of our science professors here at UMM. The professor is looking to utilize your software to impleme

Re: [Rd] certain pipe() use cases not working in r-devel

2024-02-15 Thread Tomas Kalibera
On 2/14/24 23:43, Jennifer Bryan wrote: Hello, I've noticed a specific type of pipe() usage that works in released R, but not in r-devel. In 4.3.2 on macOS, I can write to a connection returned by pipe(), i.e. "hello, world" prints here: R.version.string [1] "R version 4.3.2 (2023-10-31)"

Re: [Rd] certain pipe() use cases not working in r-devel

2024-02-15 Thread Tomas Kalibera
On 2/15/24 14:09, Ivan Krylov via R-devel wrote: В Wed, 14 Feb 2024 14:43:12 -0800 Jennifer Bryan пишет: But in r-devel on macOS, this is silent no-op, i.e. "hello, world" does not print: R.version.string [1] "R Under development (unstable) (2024-02-13 r85895)" con <- pipe("cat") writeLi

Re: [Rd] certain pipe() use cases not working in r-devel

2024-02-15 Thread Ivan Krylov via R-devel
В Wed, 14 Feb 2024 14:43:12 -0800 Jennifer Bryan пишет: > But in r-devel on macOS, this is silent no-op, i.e. "hello, world" > does not print: > > > R.version.string > [1] "R Under development (unstable) (2024-02-13 r85895)" > > con <- pipe("cat") > > writeLines("hello, world", con) I can r