ObservedObserver / GWalkR

R binding of graphic-walker, use tableau style drag and drop UI interface to build visualization in R.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

English | 中文

GWalkR: Your One-Stop R Package for Exploratory Data Analysis with Visualization

Start Exploratory Data Analysis (EDA) in R with a Single Line of Code! GWalkR is an interactive Exploratory Data Analysis (EDA) Tool in R. It integrates the htmlwidgets with Graphic Walker. It can can simplify your R data analysis and data visualization workflow, by turning your data frame into a Tableau-style User Interface for visual exploration.

image

If you prefer using Python, you can check out PyGWalker!

Getting Started

Setup GWalkR

Through Package Archive File (.tar.gz)

First, download the package archive file GWalkR_0.1.0.tar.gz from this link. 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".

Through Running R Script

Alternatively, you can run the following R code in your script to download without a lot of clicking.

url <- "https://kanaries-app.s3.ap-northeast-1.amazonaws.com/oss/gwakr/GWalkR_0.1.0.tar.gz"
destfile <- "GWalkR_0.1.0.tar.gz"
download.file(url, destfile)
install.packages(destfile, repos = NULL, type = "source")

Through CRAN

To be supported soon. Stay tuned!

Start Your Data Exploration in a Single Line of Code

library(GWalkR)
data(iris)
gwalkr(iris)
image

About

R binding of graphic-walker, use tableau style drag and drop UI interface to build visualization in R.

License:Apache License 2.0


Languages

Language:R 40.9%Language:TypeScript 39.4%Language:JavaScript 13.4%Language:HTML 5.6%Language:CSS 0.7%