ABCDEFGHIJKLMNOPQRS
1
Applet Name/Workspace functionBugPerson reporting bugDate Update from BC
2
iscaminvbniomRfunction was not updatedSteve Wassell9/13/2015The function in the workspace has been updated and now matches the instructions in the third edition
3
iscamtwopropztestwas rounding too earlyBeth Chance3/31/2016should now be more consistent to more decimal places (e.g., vs. prop.test with correct=FALSE), also now accepts "not.equal" as the alternative. Made same changes to twosamplet, onesamplet, and onepropztest
4
iscamsummaryna w/explanatory - you need to add na.rm=TRUE to all the tapply commandsJo Hardin4/25/2016
5
iscamboxplotdoesn't play nicely with NAJo Hardin4/25/2016
6
iscamsummaryMultiple problems:

1) When called with no explanatory variable, column name is "Min " not "Min".
2) Class is different depending on whether explanatory = NULL or not. (When explanatory = NULL, it is "character", when it is not, it is data.frame, though the columns are still class character.)
3) Elements of the data.frame/characterVector are characters, not numeric.
4) NA cells are " NA" not NA.

FIXES

1) Is easy: The space at the end of the column name definition should be eliminated.
2 and 3) When explanatory = NULL, this is an easy fix: qq should be moved below the print call, and should be data.frame(qq). I haven't figured out why its assigning the print call when explanatory != NULL.
4) I think fixing 2 and 3 also fixes the weird " NA" problem too.
Matt Petersen10/19/2021
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71