Paolo G. Hilado | Github UserName: Dcroix
January 26, 2018
Hi! I feel ecstatic to share with you this application I have made via RStudio and Shiny. The app is named Pokemon Stats Review. As the name states, this is expected to help out people who are into online Pokemon competitive battles. It lets pokemon trainers compare all the existing pokemon released from its very first title, Generation One, to its latest release which is Generation Seven. Here is what the app delivers:
The application gets inputs via the radiobuttons, selectInput, checkboxInput and sliderInput which are all embedded on the user interface. The process of generating the tables is reactive. The data is subset depending on the selected type and then ranked from highest to lowest. The output is displayed via renderTable function and is displayed given certain conditions depending on the chosen attribute of the user. The boxplots are generated via plotly and the output is displayed via the renderPlotly function. The boxplots being generated by the application depends on the chosen attribute of the user. Besides creating the boxplots, plotly also processes the data to determine the minimum, 1st quartile, median, 3rd quartile and maximum values. Both outputs (calculations), tables and boxplots, derived by running the codes are presented on the main panel of the user interface. To see more of the codes, I have uploaded them to my github as instructed by our professors. Here is the link: https://github.com/Dcroix/PokeStatsReview
As instructed in this project, here a code is ran to generate a sample boxplot. Considering that Rpresentation doesn't run like Shiny, there is a slight modification in the said code (particularly in the inputs) and had to use ggplot instead of plotly.If you want to see the codes, refer to the link previously given.