Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
^\.Rproj\.user$
^README\.Rmd$
^data-raw$
^scratch$
^csv$
^LICENSE\.md$
^\.github$
Expand All @@ -12,3 +13,8 @@
^Meta$
^cran-comments.md$
^CRAN-RELEASE$
^vignettes/articles/\.quarto$
^vignettes/articles/*_files$
^vignettes/articles$
^revdep$
^CRAN-SUBMISSION$
95 changes: 95 additions & 0 deletions .github/workflows/rhub.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
# R-hub's generic GitHub Actions workflow file. It's canonical location is at
# https://github.com/r-hub/actions/blob/v1/workflows/rhub.yaml
# You can update this file to a newer version using the rhub2 package:
#
# rhub::rhub_setup()
#
# It is unlikely that you need to modify this file manually.

name: R-hub
run-name: "${{ github.event.inputs.id }}: ${{ github.event.inputs.name || format('Manually run by {0}', github.triggering_actor) }}"

on:
workflow_dispatch:
inputs:
config:
description: 'A comma separated list of R-hub platforms to use.'
type: string
default: 'linux,windows,macos'
name:
description: 'Run name. You can leave this empty now.'
type: string
id:
description: 'Unique ID. You can leave this empty now.'
type: string

jobs:

setup:
runs-on: ubuntu-latest
outputs:
containers: ${{ steps.rhub-setup.outputs.containers }}
platforms: ${{ steps.rhub-setup.outputs.platforms }}

steps:
# NO NEED TO CHECKOUT HERE
- uses: r-hub/actions/setup@v1
with:
config: ${{ github.event.inputs.config }}
id: rhub-setup

linux-containers:
needs: setup
if: ${{ needs.setup.outputs.containers != '[]' }}
runs-on: ubuntu-latest
name: ${{ matrix.config.label }}
strategy:
fail-fast: false
matrix:
config: ${{ fromJson(needs.setup.outputs.containers) }}
container:
image: ${{ matrix.config.container }}

steps:
- uses: r-hub/actions/checkout@v1
- uses: r-hub/actions/platform-info@v1
with:
token: ${{ secrets.RHUB_TOKEN }}
job-config: ${{ matrix.config.job-config }}
- uses: r-hub/actions/setup-deps@v1
with:
token: ${{ secrets.RHUB_TOKEN }}
job-config: ${{ matrix.config.job-config }}
- uses: r-hub/actions/run-check@v1
with:
token: ${{ secrets.RHUB_TOKEN }}
job-config: ${{ matrix.config.job-config }}

other-platforms:
needs: setup
if: ${{ needs.setup.outputs.platforms != '[]' }}
runs-on: ${{ matrix.config.os }}
name: ${{ matrix.config.label }}
strategy:
fail-fast: false
matrix:
config: ${{ fromJson(needs.setup.outputs.platforms) }}

steps:
- uses: r-hub/actions/checkout@v1
- uses: r-hub/actions/setup-r@v1
with:
job-config: ${{ matrix.config.job-config }}
token: ${{ secrets.RHUB_TOKEN }}
- uses: r-hub/actions/platform-info@v1
with:
token: ${{ secrets.RHUB_TOKEN }}
job-config: ${{ matrix.config.job-config }}
- uses: r-hub/actions/setup-deps@v1
with:
job-config: ${{ matrix.config.job-config }}
token: ${{ secrets.RHUB_TOKEN }}
- uses: r-hub/actions/run-check@v1
with:
job-config: ${{ matrix.config.job-config }}
token: ${{ secrets.RHUB_TOKEN }}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,5 @@ vignettes/*.pdf
inst/doc
doc
Meta
scratch/
**/.quarto/
3 changes: 3 additions & 0 deletions CRAN-SUBMISSION
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Version: 0.2.0
Date: 2025-03-18 16:10:25 UTC
SHA: 5d36de00896fc85e6c75ee6d660feb2dd9548c81
18 changes: 8 additions & 10 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,32 +1,30 @@
Package: avocado
Title: Weekly Hass Avocado Sales Summary
Version: 0.1.0
Version: 0.2.0
Authors@R:
person(given = "Nikhil",
family = "Agarwal",
role = c("aut", "cre"),
email = "gitnik@niks.me",
comment = c(ORCID = "0000-0003-1470-7472"))
Description: Provides a weekly summary of Hass Avocado sales for the
contiguous US from January 2017 to November 2020.
contiguous US from January 2017 through December 20204.
See the package website for more information, documentation,
and examples. Data source: Haas Avocado Board
<https://hassavocadoboard.com/category-data/>.
License: MIT + file LICENSE
Encoding: UTF-8
LazyData: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.1.1
RoxygenNote: 7.3.2
Depends:
R (>= 2.10)
R (>= 4.1)
Suggests:
dplyr,
purrr,
ggplot2,
janitor,
knitr,
rmarkdown,
lubridate,
tidyr,
ggrepel
quarto
VignetteBuilder: knitr
Config/Needs/website: quarto
URL: https://github.com/nikdata/avocado
BugReports: https://github.com/nikdata/avocado/issues
10 changes: 10 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# avocado 0.2.0

## Breaking Changes
* Column names changed to be more descriptive

## Improvements
* Datasets updated to include data through 2024 calendar year
* Units definition clarified to mean avocados instead of weight
* Reduced vignettes down to only 1 vignette for clarity

# avocado 0.1.0

* Added a `NEWS.md` file to track changes to the package.
Expand Down
Loading
Loading