-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Corrected outstanding CRAN checks related to malformed
DESCRIPTION
…
…file and need to import functions (close #3)
- Loading branch information
Showing
3 changed files
with
45 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,17 @@ | ||
Package: visualize | ||
Type: Package | ||
Title: Graph Probability Distributions with User Supplied Parameters | ||
and Stats. | ||
Version: 4.2 | ||
Date: 2013-08-03 | ||
Author: James Balamuta | ||
Maintainer: James Balamuta <james.balamuta@gmail.com> | ||
Description: Graphs the pdf or pmf and highlights what area or probability is present in user defined locations. Visualize is able to provide lower tail, bounded, upper tail, and two tail calculations. Supports strict and equal to inequalities. Also provided on the graph is the mean and variance of the distribution. | ||
License: MIT License | ||
URL: http://thecoatlessprofessor.com | ||
Title: Graph Probability Distributions with User Supplied Parameters and Statistics | ||
Version: 4.3 | ||
Date: 2017-04-27 | ||
Depends: R (>= 3.0.0) | ||
Authors@R: c(person("James", "Balamuta", role = c("aut", "cph", "cre"), | ||
email = "james.balamuta@gmail.com")) | ||
Description: Graphs the pdf or pmf and highlights what area or probability is | ||
present in user defined locations. Visualize is able to provide lower tail, | ||
bounded, upper tail, and two tail calculations. Supports strict and equal | ||
to inequalities. Also provided on the graph is the mean and variance of | ||
the distribution. | ||
License: MIT + file LICENSE | ||
URL: https://github.com/coatless/visualize, http://thecoatlessprofessor.com/projects/visualize/ | ||
BugReports: https://github.com/coatless/visualize/issues | ||
RoxygenNote: 6.0.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
YEAR: 2017 | ||
COPYRIGHT HOLDER: James Balamuta |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,28 @@ | ||
exportPattern("^[[:alpha:]]+") | ||
# Generated by roxygen2: do not edit by hand | ||
|
||
export(visualize.beta) | ||
export(visualize.binom) | ||
export(visualize.cauchy) | ||
export(visualize.chisq) | ||
export(visualize.continuous) | ||
export(visualize.discrete) | ||
export(visualize.exp) | ||
export(visualize.f) | ||
export(visualize.gamma) | ||
export(visualize.geom) | ||
export(visualize.hyper) | ||
export(visualize.it) | ||
export(visualize.lnorm) | ||
export(visualize.logis) | ||
export(visualize.nbinom) | ||
export(visualize.norm) | ||
export(visualize.pois) | ||
export(visualize.t) | ||
export(visualize.unif) | ||
export(visualize.wilcox) | ||
importFrom(graphics,axis) | ||
importFrom(graphics,barplot) | ||
importFrom(graphics,mtext) | ||
importFrom(graphics,plot) | ||
importFrom(graphics,polygon) | ||
importFrom(graphics,title) |