Re: [R] Is there a sexy way ...?

2024-09-26 Thread Deepayan Sarkar
> unsplit(x, f) [1] 7 2 6 13 5 9 1 14 15 4 8 12 10 11 3 Is more general (works if the subgroups are imbalanced), and hopefully more sexy as well :-) Best, -Deepayan On Fri, 27 Sept 2024 at 10:11, Bert Gunter wrote: > ... And, in fact, I just realized that > > c(do.call(rbind, x)) >

Re: [R] Is there a sexy way ...?

2024-09-26 Thread Bert Gunter
... And, in fact, I just realized that c(do.call(rbind, x)) is even better. -- Bert On Thu, Sep 26, 2024 at 9:26 PM Bert Gunter wrote: > Sorry, hit send by accident. > The 2-line version is: > > x <- do.call(rbind, x) > dim(x) <- NULL > > Cheers, > Bert > > On Thu, Sep 26, 2024 at 9:23 PM Be

Re: [R] Is there a sexy way ...?

2024-09-26 Thread Bert Gunter
Sorry, hit send by accident. The 2-line version is: x <- do.call(rbind, x) dim(x) <- NULL Cheers, Bert On Thu, Sep 26, 2024 at 9:23 PM Bert Gunter wrote: > How about: > as.vector(do.call(rbind,x)) > > Cheers, > Bert > > > > > However, I much prefer a 2 line version: > > On Thu, Sep 26, 2024 at

Re: [R] Is there a sexy way ...?

2024-09-26 Thread Bert Gunter
How about: as.vector(do.call(rbind,x)) Cheers, Bert However, I much prefer a 2 line version: On Thu, Sep 26, 2024 at 8:56 PM Rolf Turner wrote: > > I have (toy example): > > x <- list(`1` = c(7, 13, 1, 4, 10), > `2` = c(2, 5, 14, 8, 11), > `3` = c(6, 9, 15, 12, 3)) > an

Re: [R] Is there a sexy way ...?

2024-09-26 Thread avi.e.gross
Rolf, This works, albeit you may not be thrilled: x <- list(`1` = c(7, 13, 1, 4, 10), `2` = c(2, 5, 14, 8, 11), `3` = c(6, 9, 15, 12, 3)) as.vector(rbind(x[[1]], x[[2]], x[[3]])) -- output: > as.vector(rbind(x[[1]], x[[2]], x[[3]])) [1] 7 2 6 13 5 9 1 14 15 4 8 1

[R] Is there a sexy way ...?

2024-09-26 Thread Rolf Turner
I have (toy example): x <- list(`1` = c(7, 13, 1, 4, 10), `2` = c(2, 5, 14, 8, 11), `3` = c(6, 9, 15, 12, 3)) and f <- factor(rep(1:3,5)) I want to create a vector v of length 15 such that the entries of v, corresponding to level l of f are the entries of x[[l]]. I.e. I

Re: [R] Problem with converting grib file to excel

2024-09-26 Thread Roy Mendelssohn - NOAA Federal via R-help
The easiest would be to send the link to the site from which you downloaded the file. Thanks, -Roy > On Sep 26, 2024, at 1:26 PM, CALUM POLWART wrote: > > Attachments CAN NOT be sent to group > > > On Thu, 26 Sep 2024, 21:22 javad bayat, wrote: > Dear Roy, > Sorry for my mistake, I thought

Re: [R] Problem with converting grib file to excel

2024-09-26 Thread CALUM POLWART
Attachments CAN NOT be sent to group On Thu, 26 Sep 2024, 21:22 javad bayat, wrote: > Dear Roy, > Sorry for my mistake, I thought I have uploaded the grib file. > I really apologise for that. I will send it on Saturday. > Thank you very much. > > On Thu, 26 Sept 2024, 17:40 Roy Mendelssohn - N

Re: [R] Problem with converting grib file to excel

2024-09-26 Thread javad bayat
Dear Roy, Sorry for my mistake, I thought I have uploaded the grib file. I really apologise for that. I will send it on Saturday. Thank you very much. On Thu, 26 Sept 2024, 17:40 Roy Mendelssohn - NOAA Federal, < roy.mendelss...@noaa.gov> wrote: > Hi Javad: > > I know a lot about reading GRIB f

Re: [R] Problem with converting grib file to excel

2024-09-26 Thread Roy Mendelssohn - NOAA Federal via R-help
Hi Javad: I know a lot about reading GRIB files, I work with them all the time. But if you don’t make the file available, or point me to where I can download it, there is not much I can do. Thanks, -Roy > On Sep 25, 2024, at 9:41 PM, javad bayat wrote: > > Dear all; > Many thanks for yo