Assignment #10: Building Your Own R Package
Assignment #10: Building Your Own R Package Purpose The Friedman package is designed to help students like me and researchers perform efficient exploratory data analysis in R. It provides tools for data cleaning, summarizing, and visualizing datasets, making common workflows faster and easier. The package is aimed at beginners and intermediate R users who want a consistent set of functions for analyzing data without having to write repetitive code. Key Functions Here are some planned functions: clean_data(): Standardizes column names, handles missing values, and formats data frames for analysis. summarize_data(): Provides summary statistics for numeric and categorical columns, including counts, means, medians, and standard deviations. plot_distribution(): Generates histograms, density plots, and boxplots for selected variables. compare_groups(): Performs group-wise comparisons and outputs summary tables and plots. DESCRIPTION Choices Dependencies (Imports): I included ggplot2 and ...