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 manipulation, and are great for that. I chose the CC0 license because it allows for free use of the package and includes a dependency to ensure compatibility. 

Comments

Popular posts from this blog

Evaluating the function myMean in RStudio

Module #8 Assignment

Module 5: Doing Math