knitr::opts_chunk$set(echo = TRUE)
This is my Rmd file of four functions from my package called MyPackage. These functions have been used in previous lab assignments to demonstrate my knowledge of R.
This makes a histogram of the normal distribution from a sample size n.
?mybin MyPackage::mybin()
This finds the default confidence interval for a 2 sample population if x is a random, single sample.
?myci MyPackage::myci(x = rnorm(30, mean=10, sd=12))
This makes a histogram of a uniform sample distribution with x as the sample size.
?myclt MyPackage::myclt()
This makes a plot of the maximum likelihood of a data set with param and x.
?mymaxlik logbin=function(x,param) log(dbinom(x,prob=param,size=50)) MyPackage::mymaxlik(logbin,x=c(1,3,9,7,4,6,5,8),param=seq(0,1,length=1000),main="Maximum Likelihood, n=20")
This is the address of my GITHUB repository: https://github.com/tdstarz/MyPackage
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.