You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
person("Yue", "Yu", , "yyubv@connect.ust.hk", role = c("aut", "cre"),
6
6
comment = c(ORCID = "0000-0002-9302-0793")),
7
7
person("Kanaries Data Inc.", role = c("cph", "fnd")))
8
8
Maintainer: Yue Yu <yyubv@connect.ust.hk>
9
-
Description: Simplify your R data analysis and data visualization workflow, by turning your data frame into a 'Tableau' style User Interface for visual exploration.
9
+
Description: Simplify your R data analysis and data visualization workflow by turning your data frame into an interactive 'Tableau'-like interface, leveraging the 'graphic-walker' JavaScript library and the 'htmlwidgets' package.
Copy file name to clipboardExpand all lines: R/gwalkr.R
+43-7Lines changed: 43 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -3,27 +3,41 @@
3
3
#' Use this function to create a GWalkR interface from a given data frame in your "Viewer" window, and start your data exploration! Please make sure the width and the height of your "Viewer" window are large enough.
4
4
#'
5
5
#' @import htmlwidgets
6
+
#' @import openssl
6
7
#'
7
8
#' @param data A data frame to be visualized in the GWalkR. The data frame should not be empty.
8
9
#' @param lang A character string specifying the language for the widget. Possible values are "en" (default), "ja", "zh".
10
+
#' @param columnSpecs An optional list of lists to manually specify the types of some columns in the data frame.
11
+
#' Each top level element in the list corresponds to a column, and the list assigned to each column should have
12
+
#' two elements: `analyticalType` and `semanticType`. `analyticalType` can
13
+
#' only be one of "measure" or "dimension". `semanticType` can only be one of
14
+
#' "quantitative", "temporal", "nominal" or "ordinal". For example:
#' @param visConfig An optional config string to reproduce your chart. You can copy the string by clicking "export config" button on the GWalkR interface.
20
+
#'
21
+
#' @return An \code{htmlwidget} object that can be rendered in R environments
Alternatively, download the package archive file `GWalkR_0.1.0.tar.gz` from [this link](https://kanaries-app.s3.ap-northeast-1.amazonaws.com/oss/gwalkr/GWalkR_0.1.0.tar.gz).
35
+
Alternatively, download the package archive file `GWalkR_latest.tar.gz` from [this link](https://kanaries-app.s3.ap-northeast-1.amazonaws.com/oss/gwalkr/GWalkR_latest.tar.gz).
36
36
Open R Studio, click "Install" in the "Packages" window, and select "Package Archive File (.tgz; .tar.gz)" in the "Install from". Then, select the archive in your file system and click "Install".
0 commit comments