Re: [R] Compressing a sequence

2025-02-21 Thread Steven Ellis
Hi Dennis, A quick Claude request: "using r I have a sequence like:1, 3, 4, 5, 7, 8, 12, 13, 14, 15, 20I would like to display it as:1, 3-5, 7-8, 12-15, 20" yielded: condense_sequence <- function(nums) { if (length(nums) == 0) return("") if (length(nums) == 1) return(as.char

Re: [R] Installing R and RStudio - Contact Software Manufacturer Error URGENT

2025-01-15 Thread Steven Ellis
Hi Eliana, What model Mac are you using? Are you the owner? Thanks, Steven On Wed, Jan 15, 2025, 1:45 PM Eliana Madison wrote: > Good morning, I am currently trying to download R and RStudio to my MacOS > 13.3 as it is a requirement for a statistics class I am taking this > semester. > > I hav

Re: [R] Confirmation of no Electronic Communication functionality

2024-12-13 Thread Steven Ellis
Hi Edward, R can indeed initiate electronic communication, e.g. by downloading new libraries (`install.packages()`). You may be best off using a container. Steven On Fri, Dec 13, 2024, 10:25 AM Edward Woo via R-help wrote: > Hi, > > I am trying to download R version 3.6.1 onto my company compu