# ggplotwithyourdata **Repository Path**: liuxch5/ggplotwithyourdata ## Basic Information - **Project Name**: ggplotwithyourdata - **Description**: R Shiny app as an inteface to ggplot2 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-11 - **Last Updated**: 2020-12-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README
R Shiny app as a handy inteface to ggplot2. It enables you to quickly explore your data to detect trends on the fly. You can do scatter plots, dotplots, boxplots, barplots, histograms and densities. For a quick overview head to this Youtube Tutorial .
NEW!! Export Plots and Plot Code tabs contributed by Dean Attali. Once a plot is saved in the X/Y Plot tab by providing a name and hitting the Save plot star button it will become available for exporting. You can export in portrait, landscape and multiple plots per page.
Plot Code will let you look at the source code that generated the plot with the various options.
NEW!! Initial support for quick summary statistics tables using Benjamin Rich table1 package. More on this soon.
ggplot2 built-in functionalityfacet_grid and facet_wrap Group, color, size, fill mappings * Controlling y and x axis labels, legends and other commonly used theme options.
Make sure to have all required packages installed shiny, shinyjs, ggplot2, ggrepel, scales, DT, tidyr, dplyr, Hmisc, quantreg, markdown, ggkm abd table1. The app will try to install ggkm and table1 (if not found) using the commands below:
install.packages(c("shiny","shinyjs","ggplot2","scales","DT","tidyr","dplyr","Hmisc","quantreg","markdown","devtools"))
devtools::install_github("sachsmc/ggkm")
devtools::install_github("benjaminrich/table1")
Make sure that you are using this version of ggrepel
devtools::install_github("slowkow/ggrepel@0.6.6")
The main app contains several testing apps the main app can be run using this command:
shiny::runGitHub('ggplotwithyourdata', 'smouksassi', subdir = 'shinyapp')
Try to reproduce the steps below using the included sample_df.csv. ### Example 1
Example use case 2 with the included sample_df.csv.
Example use case 3 with the included sample_df.csv.
Example use case 4 with the included sample_df.csv.