Final Project: Build and Share Your Own R Package
GitHub Repository: AustinTCurtis/AustinCurtis: For LIS4370 For my final project, I created an R package called co2Package , which analyzes annual CO₂ emissions by country. The package uses a real dataset from Our World in Data and includes custom functions, defensive programming, documentation, and a full vignette. This project helped me understand how professional R packages are built, tested, and documented, while also giving me hands-on experience with GitHub version control. Choosing the Dataset I selected the Annual CO2 Emissions per Country dataset from Our World in Data because: It is real-world, meaningful, and relevant to climate policy. It contains multiple variables suitable for analysis. It provides an opportunity to visualize long-term global trends. It fits naturally into a package with summary and plotting functions. After downloading the CSV file, I imported, cleaned, and standardized the variable names inside my package using a script stored in...