Module # 10 Building my own R package
Creating the Tier List Package in RStudio
1) This is now week ten of this course and I am now starting to see the end. This week I tackle creating my very own package in R. This is a very first for me and I am very excited. Based on the title of this blog you can tell that I plan to create a package that allows users to create a tier list in RStudio. This will all take a lot of work, much more than I can do in a single assignment, so the only goal for this week is to create the DESCRIPTION file for the package. This tell us everything that the package is about and its purposes. Here it is down below:
Package: Khan Tier
Type: Package
Title: Creates A Tier List Allowing For Ranking of Observations
Version: 0.0.0.90000
Author: Moeen Khan
Maintainer: The package maintainer <Khan36@usf.edut>
Description: The Khan Tier package provides a simple way to create and customize
tier lists, which can be used to rank and categorize items based on user-defined
criteria. This is particularly useful for data visualization, enabling users to
quickly organize and display ranked information. Comparing their values to one another.
It includes functions for creating, updating, and visualizing tier lists in R.
License: CC0
Encoding: UTF-8
LazyData: true
2) That is how the file actually looks like right now. If you want to download it for yourself you can here on my GitHub.
3) As mentioned Before I plan to create a R package that creates a function that allows users to create a Tier list easily. Users should be able to customize the how many Tiers they want on their list, what each tier should be labeled, a simple way to organize data to categorize them into tiers from data frames. Users Should also be able to color each tier and display it in the plot section of RStudio. If I can accomplish that much, I believe that I would be a massive accomplishment.
Comments
Post a Comment