Building an R Package: Jviz
For this project, I developed the skeleton of an R package, which I named Jviz. The intent is for this package to help beginner R users to easily summarize, explore, and visualize data. I thought of this idea since it can be complicated to write long and complex code to understand a dataset. The goal for this package is to allow basic data analysis and visualization to be easy, efficient, and beginner-friendly. This package is intended for students, new analysts, and anyone who wants to start learning data visualization with R. There will be functions like quick_summary(), which is meant to easily summarize a dataset, plot_distribution(), which graphs the distribution of a variable, and plot_relationship() for comparing two variables, and group_avg() for calculating averages by groups. In the DESCRIPTION file, I added the fields stating the package's name, version, and author. I added ggplot2 and dyplr in the import field because they support data visualization and manipulat...