You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
305B

  1. Create a package for this HTML widget.
  2. We're not going to publish this, so you can call it whatever you want
  3. ```{r create-package}
  4. usethis::create_package("frappeCharts")
  5. ```
  6. Add a dev script for notes
  7. ```{r dev}
  8. dir.create("dev")
  9. file.create("dev/dev.R")
  10. rstudioapi::navigateToFile("dev/dev.R")
  11. ```