Skip to content

Commit 8371093

Browse files
committed
Small updates to data file and other minor changes
1 parent 5f8c7b9 commit 8371093

File tree

9 files changed

+18
-22
lines changed

9 files changed

+18
-22
lines changed

DESCRIPTION

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,13 @@ Authors@R: c(
88
comment = c(ORCID = "0009-0005-9097-0688"))
99
)
1010
Description: Introductory statistics methods to accompany "Investigating
11-
Statistical Concepts, Applications, and Methods" by Beth Chance &
12-
Allan Rossman. Tools to introduce statistical concepts with a focus on
13-
simulation approaches. Functions are verbose, designed to provide
14-
ample output for students to understand what each function does.
15-
Additionally, most functions are accompanied with plots. The package
16-
is designed to be used in an educational setting.
11+
Statistical Concepts, Applications, and Methods" (ISCAM) by Beth
12+
Chance & Allan Rossman. Tools to introduce statistical concepts with a
13+
focus on simulation approaches. Functions are verbose, designed to
14+
provide ample output for students to understand what each function
15+
does. Additionally, most functions are accompanied with plots. The
16+
package is designed to be used in an educational setting alongside the
17+
ISCAM textbook.
1718
License: MIT + file LICENSE
1819
URL: https://visruthsk.github.io/ISCAM/
1920
Depends:

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
YEAR: 2024
1+
YEAR: 2025
22
COPYRIGHT HOLDER: ISCAM authors

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# MIT License
22

3-
Copyright (c) 2024 ISCAM authors
3+
Copyright (c) 2025 ISCAM authors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

R/data.R

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#' \item{treatment}{Whether a cloud was seeded with silver iodide or not.}
1818
#' \item{rainfall}{Volume of rainfall during the next 24 hours, in acre-feet.}
1919
#' }
20-
#' @source <https://www.jstor.org/stable/1268346>
20+
#' @source <https://doi.org/10.2307/1268346>
2121
"CloudSeeding"
2222

2323
#' Flint Michigan Lead Data
@@ -31,7 +31,6 @@
3131
#' exceed an action level of 15 parts per billion (ppb) in more than 10% of homes sampled, then actions
3232
#' must be undertaken to control corrosion, and the public must be informed.
3333
#'
34-
#' TODO Needs source?
3534
#'
3635
#' @format ## `flint`
3736
#' A data frame with 71 rows and 1 column:
@@ -53,7 +52,7 @@
5352
#' pushed back down the hill by another character (the “hinderer” toy). The infant was alternately shown
5453
#' these two scenarios several times. Then the child was presented with both pieces of wood (the helper
5554
#' and the hinderer characters) and asked to pick one to play with. Videos demonstrating this component
56-
#' of the study can be found at <http://campuspress.yale.edu/infantlab/media/>.
55+
#' of the study can be found at <https://campuspress.yale.edu/infantlab/media/>.
5756
#'
5857
#' @format ## `Infant`
5958
#' A data frame with 16 rows and 1 column:
@@ -76,7 +75,7 @@
7675
#' \item{Species}{What species this Elephant was.}
7776
#' \item{Distance}{How many kilometers they walked per day.}
7877
#' }
79-
#' @source <https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4944962/>
78+
#' @source <https://pmc.ncbi.nlm.nih.gov/articles/PMC4944962/>
8079
"Elephants"
8180

8281
#' Sleep Deprivation Data

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ISCAM
33
***A Companion to the Book "Investigating Statistical Concepts, Applications, and Methods"***
44

55
<!-- badges: start -->
6-
[![R-CMD-check](https://github.com/Vishwarrior26/ISCAM/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/Vishwarrior26/ISCAM/actions/workflows/R-CMD-check.yaml)
6+
[![R-CMD-check](https://github.com/VisruthSK/ISCAM/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/VisruthSK/ISCAM/actions/workflows/R-CMD-check.yaml)
77
<!-- badges: end -->
88

99
```r
@@ -23,11 +23,7 @@ This package collates and presents functions for ISCAM alongside some data to be
2323

2424
If you don't know how a function e.g. `EXAMPLE()` works, you can write `?EXAMPLE` in the console to get help. Also look to the textbook/Canvas/homework to see how the function is used. If you see code like `iscambinomprob(14, 16, .5, FALSE)` in the text or elsewhere, you can generally use `ISCAM::binomprob(14, 16, .5, FALSE)`.
2525

26-
Workspace: `load(url("http://www.rossmanchance.com/iscam3/ISCAM.RData"))`
27-
28-
This package is currently written to be a minimal wrapper around the above workspace to arrange it in package form. Almost all of the code is ported as is.
29-
30-
Almost all code written by Dr. Beth Chance. Package collated by Visruth SK.
26+
Old Workspace: `load(url("http://www.rossmanchance.com/iscam3/ISCAM.RData"))`
3127

3228
<!--
3329
TODO:

man/CloudSeeding.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/Elephants.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/ISCAM-package.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/Infant.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)