Tcl Library Source Code

Check-in [92b312ced8]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Update the man page for test-anova-F and describe the recent changes
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 92b312ced8ca099c39affae299a0e85427fbf32c
User & Date: arjenmarkus 2017-01-10 08:04:48
Context
2017-01-17
14:42
Add procedures for Tukey's range test and Dunnett's as subsequent analysis tools for ANOVA check-in: 794c0550e4 user: arjenmarkus tags: trunk
2017-01-10
08:04
Update the man page for test-anova-F and describe the recent changes check-in: 92b312ced8 user: arjenmarkus tags: trunk
2017-01-09
23:57
Module uri. Amend code and tests for full RFC 3986 compliance (except the RFC 1630 loophole). Add quirk options to permit non-compliant behavior, including for backward compatibility. Accept and amend certain invalid arguments instead of throwing an error. Test uri::split and uri::join both with and without the quirk "NoInitialSlash" (leading "/" in path for schemes http(s), ftp). Update uri.man. check-in: 0b8557b27d user: kjnash tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to modules/math/ChangeLog.









1
2
3
4
5
6
7








2016-08-16  Arjen Markus <[email protected]>
	* pdf_stat.tcl: Correct the use of the argument for standard deviation, affects pdf-lognormal and cdf-lognormal
	                (ticket 002b9e8e07777425)
	* statistics.test: Correct the tests for both procedures
	* statistics.tcl: Bumped the version to 1.0.1
	* pkgIndex.tcl: Load version 1.0.1 of the statistics module

>
>
>
>
>
>
>
>







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2017-01-10  Arjen Markus <[email protected]>
	* statistics.test: Correct the tests for the test-anova-F procedure
	* statistics.tcl: Correct the namespace for the test-anova-F procedure and the comment
	* statistics.man: Correct the description of the test-anova-F procedure
	* linalg.test: Correct test solve-1.6 regarding permuted matrices
	* geometry.test: Add a simple definition of lmap for older versions of Tcl (notably 8.5)
	* interpolate.test: Correct test Interpolate-1.3 - missing keyword -result and use of existing table name

2016-08-16  Arjen Markus <[email protected]>
	* pdf_stat.tcl: Correct the use of the argument for standard deviation, affects pdf-lognormal and cdf-lognormal
	                (ticket 002b9e8e07777425)
	* statistics.test: Correct the tests for both procedures
	* statistics.tcl: Bumped the version to 1.0.1
	* pkgIndex.tcl: Load version 1.0.1 of the statistics module

Changes to modules/math/TODO.

1
2
3
4
5
6
7
8
9
10
11
This file records outstanding actions for the math module

dd. 8 january 2017
- Fix problem with test-anova-F (at least the test cases 1.1 and 1.2)


dd. 3 august 2016
- Fix problem in interpolation - integer arguments - done
- Fix problem in pdf-lognormal and cdf-lognormal: stdev is now used as variance - done

dd. 4 august 2016



|







1
2
3
4
5
6
7
8
9
10
11
This file records outstanding actions for the math module

dd. 8 january 2017
- Fix problem with test-anova-F (at least the test cases 1.1 and 1.2) - done


dd. 3 august 2016
- Fix problem in interpolation - integer arguments - done
- Fix problem in pdf-lognormal and cdf-lognormal: stdev is now used as variance - done

dd. 4 august 2016

Changes to modules/math/statistics.man.

265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
[arg_def list list2] - Second list of data
[arg_def float significance] - Significance level (either 0.05, 0.01 or 0.001)
[list_end]
[para]


[call [cmd ::math::statistics::test-anova-F] [arg alpha] [arg args]]
Determine if two or more groups with normally distributed data have the same variances.
The procedure returns 0 if the variances are likely unequal, 1 if they are. This is
a one-way ANOVA test. The groups may also be stored in a nested list:

[example {
    test-anova-F 0.05 $A $B $C
    #
    # Or equivalently:
    #







|
|







265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
[arg_def list list2] - Second list of data
[arg_def float significance] - Significance level (either 0.05, 0.01 or 0.001)
[list_end]
[para]


[call [cmd ::math::statistics::test-anova-F] [arg alpha] [arg args]]
Determine if two or more groups with normally distributed data have the same means.
The procedure returns 0 if the means are likely unequal, 1 if they are. This is
a one-way ANOVA test. The groups may also be stored in a nested list:

[example {
    test-anova-F 0.05 $A $B $C
    #
    # Or equivalently:
    #