Building your own R Package (Assignment 10)

 Greetings Professor,

In this assignment #10, I learned how to create our own R package and creating a description file in R. To create a package I used the description:

1. Package name

2. Title

3. Version

4. Authors

5. Description

6. Depends

7. License

8. LazyData

I created my own package by using these information in the word and posted in my GitHub Repository.

The information I put in for the package is as follows:

Package: Bantan

Type: Package

Title: Simple math calculation

Version: 0.1.0

Author: Jahnavi Mandhadapu

Maintainer: Jahnavi Mandhadapu <jmandhadapu@usf.edu>

Description: This R package contains multiple functions to implement mathematical operations and statistical functions.

Depends: R(>=3.1.2)

License: CC0

Encoding: UTF-8

LazyData: true

At first I installed the packages roxygen2 and devtools for building my package.

I created my Package as 'Bantan' and it contains functions for math functions and calculations.

The version I used 0.1.0 is explained by Professor.

This depends on the version 3.1.2 and has license of CC0 is instructed.

The LazyData variable is set to be True.

This description file is posted on my GitHub Repository. This is my GitHub Repository link:

https://github.com/Jahnavi193/Assignment10#assignment10


Thank you.


Comments