https://github.com/Yacine87/interactive_data_viz
You will find in this repository exemple of interactive data visualisation with Shiny and other R pakages
https://github.com/Yacine87/interactive_data_viz
Last synced: 4 months ago
JSON representation
You will find in this repository exemple of interactive data visualisation with Shiny and other R pakages
- Host: GitHub
- URL: https://github.com/Yacine87/interactive_data_viz
- Owner: Yacine87
- License: other
- Created: 2019-08-18T16:08:43.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-08-22T11:41:22.000Z (over 5 years ago)
- Last Synced: 2024-08-13T07:13:44.160Z (8 months ago)
- Language: R
- Homepage:
- Size: 2.11 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- jimsghstars - Yacine87/interactive_data_viz - You will find in this repository exemple of interactive data visualisation with Shiny and other R pakages (R)
README
# interactive_data_viz
You will find in this repository exemples of interactive data visualisation with Shiny and other R pakages
This work has been presented in the 2019 Algerian R users group Meetup, organised in August, 2019 in Algiers, Algeria.The data used in this exemple are about movies.
The file contains 651 obs (films) discribed with 34 features.
You can load the data file following : http://s3.amazonaws.com/assets.datacamp.com/production/course_4850/datasets/movies.RdataThe aim of this shiny app is to visualise interactively the movies' file data. Three possibilities are given:
1/ Visualise interactively Numeric vs numric variables through scatterplot (geom_point() from R ggplot2 package)
2/ Visualise interactively Factor variables (geom_bar() from R ggplot2 package)
3/ Visualise interactively numeric vs factor variablesIt gives to the user also the possibiliy to facet interactively the shown plots by checking a checkboxInput() (facet_wrap() function of the ggplot2 package)
You can use the app with an other data file.
But you need first to modify the file name (from movies to yours) and variable names in the argument choices() of the inputSelect() funtion in the R code.