Skip to content

Have a look at what's happening at Kanaries Open Source Community !

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

(opens in a new tab) (opens in a new tab)

Start Exploratory Data Analysis (EDA) in R with a Single Line of Code! GWalkR (opens in a new tab) is an interactive Exploratory Data Analysis (EDA) Tool in R. It integrates the htmlwidgets with Graphic Walker (opens in a new tab). 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.

GWalkR

If you prefer using Python, you can check out PyGWalker (opens in a new tab)!

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 (opens in a new tab). 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)

GWalkR