Assignment #10: Building Your Own R Package

The purpose of my blog this week is to build a draft a proposal describing:

  • The purpose and scope of your package (who will use it and why).

The idea would be for small businesses to quickly sort and predict where volume of orders are being shipped most often.


  • Key functions you plan to implement (name + brief description).

clean address
sort labels by region
determine where most your key shipping locations are.


  • How you chose the fields in DESCRIPTION (dependencies, license, authors).


Package: Friedman
Title: What the Package Does (One Line, Title Case)
Version: 0.0.0.9000
Authors@R: 
    person("Zachary", "Wright", , "zakkwright@yahoo.com", role = c("aut", "cre"))
Description: "Tools for organizing and analyzing shipping and order data for small collectible businesses. 
With the intention of "
License: `use_mit_license()`, `use_gpl3_license()` or friends to pick a
    license
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.3



I decided not to change the package name for now until i have a better idea, I added myself as credit and author. 


  • A link to your GitHub repo for Friedman.

  • https://github.com/Wrightkov/r-programming-assignments/tree/main/Friedman

Comments

Popular posts from this blog

Module # 7 R Object: S3 vs. S4 assignment

Week 3