Assignment 10

 For this assignment, I created my first R package called Friedman, which is designed to provide simple tools for data visualization and basic analysis. The goal of this package is to make working with data easier, especially for students or beginners who may find R overwhelming at first. Instead of writing long lines of code, users can quickly generate visuals and explore datasets using simple functions. One of the main functions included is plot_summary(), which creates a scatter plot using ggplot2 with minimal input. Overall, the package focuses on simplicity, efficiency, and making data exploration more accessible.

The DESCRIPTION file plays an important role in defining the structure and purpose of the package. I included key fields such as the package name, version (0.0.0.9000 for development), and a short description explaining what the package does. I listed myself as both the author and creator using the Authors@R field, and included dependencies like ggplot2 and dplyr since the package relies on them. I chose a CC0 license to allow free use and sharing, and added a GitHub link for both the URL and BugReports fields so users can access and contribute to the project. 

macauleywilson/r-programming-assignments






Comments

Popular posts from this blog

Assignment #5

Assignment #4