library(usethis)
usethis::path <- getwd()
# create_package(path) #... creas el projecto
usethis::proj_activate(path) #... lo activas
usethis::use_version("0.0.1")
usethis::use_data_raw("feRdata")
usethis::use_mit_license("Fernando Andres-Pretel")
usethis::use_readme_md()
usethis::use_news_md()
usethis::use_test("strClean")
usethis::use_description_defaults()
usethis::use_description(fields= list(
Package = "feRshiny",
Title = "Cosas para facilitar aplicaciones shiny que uso mucho",
`Authors@R` = 'person("Fernando", "Andres-Pretel", email = "feranpre@gmail.com",
role = c("aut", "cre"))',
License = "MIT + file LICENSE",
Language = "es"
))
usethis::use_package("ggplot2", "Suggests")
usethis::use_package("crayon", "Imports")
usethis::use_package("haven", "Imports")
usethis::use_package("readxl", "Imports")
usethis::use_package("knitr", "Imports")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.