Re: [R] tidyverse: grouped summaries (with summarize) [RESOLVED]

2021-09-13 Thread Rich Shepard
On Mon, 13 Sep 2021, Bert Gunter wrote: If you are interested in extracting seasonal patterns from time series, you might wish to check out ?stl (in the stats package). Of course, there are all sorts of ways in many packages to fit seasonality in time series that are more sophisticated, but prob

Re: [R] tidyverse: grouped summaries (with summarize) [RESOLVED]

2021-09-13 Thread Bert Gunter
If you are interested in extracting seasonal patterns from time series, you might wish to check out ?stl (in the stats package). Of course, there are all sorts of ways in many packages to fit seasonality in time series that are more sophisticated, but probably also more complicated, than your manua

Re: [R] tidyverse: grouped summaries (with summarize) [RESOLVED]

2021-09-13 Thread Rich Shepard
On Mon, 13 Sep 2021, Avi Gross via R-help wrote: Just FYI, Rich, the way the idiom with pipeline works does allow but not require the method you used: ... But equally valid are forms that assign the result at the end: Avi, I'll read more about tidyverse and summarize() in R and not just i

Re: [R] tidyverse: grouped summaries (with summarize) [RESOLVED]

2021-09-13 Thread Avi Gross via R-help
d thing. -Original Message- From: R-help On Behalf Of Rich Shepard Sent: Monday, September 13, 2021 7:04 PM To: r-help@r-project.org Subject: Re: [R] tidyverse: grouped summaries (with summarize) [RESOLVED] On Mon, 13 Sep 2021, Avi Gross via R-help wrote: > As Eric has pointed out, p

Re: [R] tidyverse: grouped summaries (with summarize) [RESOLVED]

2021-09-13 Thread Rich Shepard
On Mon, 13 Sep 2021, Avi Gross via R-help wrote: As Eric has pointed out, perhaps Rich is not thinking pipelined. Summarize() takes a first argument as: summarise(.data=whatever, ...) But in a pipeline, you OMIT the first argument and let the pipeline supply an argument silently. Av