Skip to content

Commit

Permalink
prepare for cran
Browse files Browse the repository at this point in the history
  • Loading branch information
pvictor committed Apr 12, 2021
1 parent 4a34a7a commit af5989b
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 17 deletions.
9 changes: 4 additions & 5 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
Package: esquisse
Type: Package
Title: Explore and Visualize Your Data Interactively
Version: 0.9.9.9100
Version: 1.0.0
Authors@R: c(person("Fanny", "Meyer", role = c("aut")),
person("Victor", "Perrier", email = "[email protected]", role = c("aut", "cre")),
person("Ian", "Carroll", comment = "Faceting support", role = "ctb"),
person("Xiangnan", "Dang", comment = "Facets rows and cols, X/Y limits", role = "ctb"))
Description: A 'shiny' gadget to create 'ggplot2' charts interactively with drag-and-drop to map your variables.
You can quickly visualize your data accordingly to their type, export to 'PNG' or 'PowerPoint',
and retrieve the code to reproduce the chart.
Description: A 'shiny' gadget to create 'ggplot2' figures interactively with drag-and-drop to map your variables to different aesthetics.
You can quickly visualize your data accordingly to their type, export in various formats,
and retrieve the code to reproduce the plot.
URL: https://github.com/dreamRs/esquisse
BugReports: https://github.com/dreamRs/esquisse/issues
License: GPL-3 | file LICENSE
Encoding: UTF-8
LazyData: true
RoxygenNote: 7.1.1
Roxygen: list(markdown = TRUE)
Imports: datamods,
Expand Down
2 changes: 1 addition & 1 deletion R/export.R
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ downloads_labels <- function(label = icon("download"),
}

#' @param expr An expression that generates a `ggplot` object.
#' @param env The environment in which to evaluate expr.
#' @param env The environment in which to evaluate expression.
#' @param quoted Is `expr` a quoted expression (with `quote()`)? This
#' is useful if you want to save an expression in a variable.
#' @param filename A string of the filename to export WITHOUT extension,
Expand Down
2 changes: 1 addition & 1 deletion R/geoms.R → R/geometries.R
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ potential_geoms_ref <- function() {
#' Match list of arguments to arguments of geometry
#'
#' @param geom Character. name of the geometry.
#' @param args Named list, parameters to match to geom's arguments.
#' @param args Named list, parameters to be matched to the geometry arguments.
#' @param add_aes Add aesthetics parameters (like size, fill, ...).
#' @param mapping Mapping used in plot, to avoid setting fixed aesthetics parameters.
#' @param envir Package environment to search in.
Expand Down
2 changes: 1 addition & 1 deletion R/input-dragula.R
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#' status to color them, or \code{NULL}.
#' @param replace When a choice is dragged in a target container already
#' containing a choice, does the later be replaced by the new one ?
#' @param dragulaOpts Options passed to dragula JS library.
#' @param dragulaOpts Options passed to dragula JavaScript library.
#' @param boxStyle CSS style string to customize source and target container.
#' @param width Width of the input.
#' @param height Height of each boxes, the total input height is this parameter X 2.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<!-- badges: start -->
[![version](http://www.r-pkg.org/badges/version/esquisse)](https://CRAN.R-project.org/package=esquisse)
[![cranlogs](http://cranlogs.r-pkg.org/badges/esquisse)](https://CRAN.R-project.org/package=esquisse)
[![Lifecycle: stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://www.tidyverse.org/lifecycle/#stable)
[![Lifecycle: stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html)
[![R build status](https://github.com/dreamRs/esquisse/workflows/R-CMD-check/badge.svg)](https://github.com/dreamRs/esquisse/actions)
<!-- badges: end -->

Expand Down
2 changes: 1 addition & 1 deletion man/dragulaInput.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/ggplot-output.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions man/match_geom_args.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/potential_geoms.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions vignettes/get-started.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ esquisser(mtcars)

If you don't have used a `data.frame` when launching the addin, a window to import data will appear.

This functionnality comes from package [{datamods}](https://github.com/dreamRs/datamods), you can find more documentation about it [here](https://dreamrs.github.io/datamods/articles/datamods.html).
This feature comes from package [{datamods}](https://github.com/dreamRs/datamods), you can find more documentation about it [here](https://dreamrs.github.io/datamods/articles/datamods.html).

![](figures/import-data.png)

Expand All @@ -66,7 +66,7 @@ This is the main interface and the most interesting part of the addin (in exampl

![](figures/esquisse.png)

You can select aesthetics to used by clicking the gear icon in top right corner, then drag-and-drop into aesthectics boxes to create a plot:
You can select aesthetics to used by clicking the gear icon in top right corner, then drag-and-drop into aesthetics boxes to create a plot:

![](figures/aesthetics.png)

Expand Down
2 changes: 1 addition & 1 deletion vignettes/shiny-usage.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ This modulle allow to save a `ggplot` object in various format and to resize it

![](figures/save-ggplot.png)

You can call the module from server to display it in a modal window (it's also possible to display it deirectly in your UI):
You can call the module from server to display it in a modal window (it's also possible to display it directly in your UI):

```{r save-ggplot}
function(input, output, session) {
Expand Down

0 comments on commit af5989b

Please sign in to comment.