Assignment #10: Building Your Own R Package
Github Link: https://github.com/rayhankhan-svg/Friedman I developed the framework for the Friedman R package for Module #10. I gained a better understanding of a R package's structure and the function of the DESCRIPTION file thanks to this assignment. R uses the machine-readable metadata found in the DESCRIPTION file to install, document, and verify the package. The package name, title, version, author details, description, dependencies, license, and additional optional elements like URL and BugReports are all included. My package's goal is to assist users in organizing, summarizing, and visualizing workplace and educational data in R. Students, novice analysts, and researchers looking for basic tools for data cleansing and producing understandable summaries and graphs are the target audience for my package. A function for cleaning datasets, a method for creating summary statistics, and a function for creating ggplot2 visualizations are some of the main features I intend to cre...