From a0cb32cfb153e37dfc9ba55f93e711d1f1406f7d Mon Sep 17 00:00:00 2001 From: Earo Wang Date: Thu, 25 Jan 2024 15:44:58 +1100 Subject: [PATCH] removed invalid urls and resubmitted --- R/data.R | 1 - README.Rmd | 1 - README.md | 26 ++++++++++++-------------- man/pedestrian.Rd | 3 --- 4 files changed, 12 insertions(+), 19 deletions(-) diff --git a/R/data.R b/R/data.R index 6fda2ae1..abcbf912 100644 --- a/R/data.R +++ b/R/data.R @@ -9,7 +9,6 @@ #' * **Date**: Date when the pedestrian counts are recorded #' * **Time**: Hour associated with Date_Time #' * **Counts**: Hourly pedestrian counts -#' @references [Melbourne Open Data Portal](https://data.melbourne.vic.gov.au/Transport-Movement/Pedestrian-volume-updated-monthly-/b2ak-trbp) #' @docType data #' @name pedestrian #' @usage pedestrian diff --git a/README.Rmd b/README.Rmd index 67cfff96..c1f9cc16 100644 --- a/README.Rmd +++ b/README.Rmd @@ -9,7 +9,6 @@ output: # tsibble [![R build status](https://github.com/tidyverts/tsibble/workflows/R-CMD-check/badge.svg)](https://github.com/tidyverts/tsibble/actions?workflow=R-CMD-check) -[![Coverage Status](https://codecov.io/gh/tidyverts/tsibble/branch/main/graph/badge.svg)](https://codecov.io/github/tidyverts/tsibble?branch=main) [![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/tsibble)](https://cran.r-project.org/package=tsibble) ```{r, echo = FALSE} diff --git a/README.md b/README.md index 825f7811..5422528e 100644 --- a/README.md +++ b/README.md @@ -5,8 +5,6 @@ [![R build status](https://github.com/tidyverts/tsibble/workflows/R-CMD-check/badge.svg)](https://github.com/tidyverts/tsibble/actions?workflow=R-CMD-check) -[![Coverage -Status](https://codecov.io/gh/tidyverts/tsibble/branch/main/graph/badge.svg)](https://codecov.io/github/tidyverts/tsibble?branch=main) [![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/tsibble)](https://cran.r-project.org/package=tsibble) The **tsibble** package provides a data infrastructure for tidy temporal @@ -62,7 +60,7 @@ weather_tsbl #> 3 EWR 2013-01-01 03:00:00 39.0 64.4 0 #> 4 EWR 2013-01-01 04:00:00 39.9 62.2 0 #> 5 EWR 2013-01-01 05:00:00 39.0 64.4 0 -#> # … with 26,110 more rows +#> # ℹ 26,110 more rows ``` The **key** can be comprised of empty, one, or more variables. See @@ -112,7 +110,7 @@ full_weather #> 3 EWR 2013-01-01 03:00:00 39.0 64.4 0 #> 4 EWR 2013-01-01 04:00:00 39.9 62.2 0 #> 5 EWR 2013-01-01 05:00:00 39.0 64.4 0 -#> # … with 26,185 more rows +#> # ℹ 26,185 more rows ``` `fill_gaps()` also handles filling in time gaps by values or functions, @@ -149,7 +147,7 @@ full_weather %>% #> 3 EWR 2013 Mar 40.1 3 #> 4 EWR 2013 Apr 53.0 1.47 #> 5 EWR 2013 May 63.3 5.44 -#> # … with 31 more rows +#> # ℹ 31 more rows ``` While collapsing rows (like `summarise()`), `group_by()` and @@ -162,15 +160,15 @@ tsibble of irregular time space too. An ecosystem, [the tidyver*ts*](https://tidyverts.org/), is built around the *tsibble* object for tidy time series analysis. -- The [tsibbledata](https://tsibbledata.tidyverts.org) package curates - a range of tsibble data examples to poke around the tsibble object. -- The [feasts](https://feasts.tidyverts.org) package provides support - for visualising the data and extracting time series features. -- The [fable](https://fable.tidyverts.org) package provides common - forecasting methods for tsibble, such as ARIMA and ETS. The - [fabletools](https://fabletools.tidyverts.org) package, which is - **fable** built upon, lays the modelling infrastructure to ease the - programming with tsibble. +- The [tsibbledata](https://tsibbledata.tidyverts.org) package curates a + range of tsibble data examples to poke around the tsibble object. +- The [feasts](https://feasts.tidyverts.org) package provides support + for visualising the data and extracting time series features. +- The [fable](https://fable.tidyverts.org) package provides common + forecasting methods for tsibble, such as ARIMA and ETS. The + [fabletools](https://fabletools.tidyverts.org) package, which is + **fable** built upon, lays the modelling infrastructure to ease the + programming with tsibble. ------------------------------------------------------------------------ diff --git a/man/pedestrian.Rd b/man/pedestrian.Rd index 31bbe6cd..014e7db2 100644 --- a/man/pedestrian.Rd +++ b/man/pedestrian.Rd @@ -32,7 +32,4 @@ pedestrian \%>\% index_by(Date) \%>\% # group by Date and use it as new index summarise(MaxC = max(Count)) } -\references{ -\href{https://data.melbourne.vic.gov.au/Transport-Movement/Pedestrian-volume-updated-monthly-/b2ak-trbp}{Melbourne Open Data Portal} -} \keyword{datasets}