Skip to content

Commit

Permalink
testing for CRAN
Browse files Browse the repository at this point in the history
  • Loading branch information
GuiFabre committed Sep 27, 2023
1 parent 46ee9e3 commit f5c258b
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 25 deletions.
22 changes: 11 additions & 11 deletions R/deprecated.R
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ plot_main_word <- function(...) {

deprecate_warn(
"2.0.0", "plot_main_word(tbl)",
"variable_visualize(dataset)")
"madshapR::variable_visualize(dataset)")

return(NULL)

Expand All @@ -61,7 +61,7 @@ plot_histogram <- function(...) {

deprecate_warn(
"2.0.0", "plot_histogram(tbl)",
"variable_visualize(dataset)")
"madshapR::variable_visualize(dataset)")

return(NULL)

Expand All @@ -84,7 +84,7 @@ plot_box <- function(...) {

deprecate_warn(
"2.0.0", "plot_box(tbl)",
"variable_visualize(dataset)")
"madshapR::variable_visualize(dataset)")

return(NULL)

Expand All @@ -107,7 +107,7 @@ plot_bar <- function(...) {

deprecate_warn(
"2.0.0", "plot_bar(tbl)",
"variable_visualize(dataset)")
"madshapR::variable_visualize(dataset)")

return(NULL)

Expand All @@ -130,7 +130,7 @@ plot_date <- function(...) {

deprecate_warn(
"2.0.0", "plot_date(tbl)",
"variable_visualize(dataset)")
"madshapR::variable_visualize(dataset)")

return(NULL)

Expand All @@ -153,7 +153,7 @@ plot_density <- function(...) {

deprecate_warn(
"2.0.0", "plot_density(tbl)",
"variable_visualize(dataset)")
"madshapR::variable_visualize(dataset)")

return(NULL)

Expand All @@ -176,7 +176,7 @@ plot_pie <- function(...) {

deprecate_warn(
"2.0.0", "plot_pie(tbl)",
"variable_visualize(dataset)")
"madshapR::variable_visualize(dataset)")

return(NULL)

Expand All @@ -199,7 +199,7 @@ plot_pie_valid_value <- function(...) {

deprecate_warn(
"2.0.0", "plot_pie_valid_value(tbl)",
"variable_visualize(dataset)")
"madshapR::variable_visualize(dataset)")

return(NULL)

Expand All @@ -222,7 +222,7 @@ summary_text <- function(...) {

deprecate_warn(
"2.0.0", "summary_text(tbl)",
"variable_visualize(dataset)")
"madshapR::variable_visualize(dataset)")

return(NULL)

Expand All @@ -245,7 +245,7 @@ summary_numerical <- function(...) {

deprecate_warn(
"2.0.0", "summary_numerical(tbl)",
"variable_visualize(dataset)")
"madshapR::variable_visualize(dataset)")

return(NULL)

Expand All @@ -269,7 +269,7 @@ summary_category <- function(...) {
deprecate_warn(
"2.0.0",
"summary_category(tbl)",
"variable_visualize(dataset)")
"madshapR::variable_visualize(dataset)")

return(NULL)

Expand Down
30 changes: 16 additions & 14 deletions vignettes/fabR-vignette.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,15 @@ vignette: >
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
eval = FALSE,
comment = "#>",
warning = FALSE,
message = FALSE,
echo = TRUE)
```


# fabR

<!-- badges: start -->
Expand All @@ -27,21 +32,18 @@ assessment and visualization of data frame-like material.

## Installation

You can install the development version of fabR from [GitHub](https://github.com/)
with:
You can install the package from CRAN, or the development version of fabR from
[GitHub](https://github.com/):

``` {r setup}
install.packages("fabR",repos = "https://cloud.r-project.org/")
# install.package("devtools")
# devtools::install_github(repo = "https://github.com/guifabre/fabR",
# auth_token = "ghp_xxx",force = TRUE)
# To update the R package in your R environment you may first need to remove
# it, and use the exit command quit() to terminate the current R session.
```

## Example
# To install the R package:
install.packages('fabR')
library(fabR)
```{r}
library(fabR)
#if you need help with the package, please use:
fabR_help()
```

0 comments on commit f5c258b

Please sign in to comment.