Editing Statistics package

Jump to navigation Jump to search
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 26: Line 26:
| [https://gnu-octave.github.io/statistics/confusionmat.html confusionmat]
| [https://gnu-octave.github.io/statistics/confusionmat.html confusionmat]
| Compute a confusion matrix for classification problems.
| Compute a confusion matrix for classification problems.
|-
| [https://gnu-octave.github.io/statistics/ConfusionMatrixChart.html ConfusionMatrixChart]
| Compute a ConfusionMatrixChart class object.
|-
|-
| [https://gnu-octave.github.io/statistics/cophenet.html cophenet]
| [https://gnu-octave.github.io/statistics/cophenet.html cophenet]
Line 59: Line 56:
| [https://gnu-octave.github.io/statistics/pdist2.html pdist2]
| [https://gnu-octave.github.io/statistics/pdist2.html pdist2]
| Compute pairwise distance between two sets of vectors.
| Compute pairwise distance between two sets of vectors.
|-
| [https://gnu-octave.github.io/statistics/procrustes.html procrustes]
| Procrustes Analysis.
|-
|-
| [https://gnu-octave.github.io/statistics/slicesample.html slicesample]
| [https://gnu-octave.github.io/statistics/slicesample.html slicesample]
Line 97: Line 91:
| Randomly sample data.
| Randomly sample data.
|-
|-
| [https://gnu-octave.github.io/statistics/fillmissing.html fillmissing]
| https://gnu-octave.github.io/statistics/grp2idx.html grp2idx]
| Replace missing entries of array A either with values in v or as determined by other specified methods.
|-
| [https://gnu-octave.github.io/statistics/grp2idx.html grp2idx]
| Get index for group variables.
| Get index for group variables.
|-
| [https://gnu-octave.github.io/statistics/ismissing.html ismissing]
| Find missing data in a numeric or string array.
|-
| [https://gnu-octave.github.io/statistics/normalise_distribution.html normalise_distribution]
|  Transform a set of data so as to be N(0,1) distributed according to an idea by van Albada and Robinson.
|-
| [https://gnu-octave.github.io/statistics/rmmissing.html rmmissing]
| Remove missing or incomplete data from an array.
|-
| [https://gnu-octave.github.io/statistics/standardizeMissing.html standardizeMissing]
| Replace data values specified by indicator in A by the standard ’missing’ data value for that data type.
|-
|-
| [https://gnu-octave.github.io/statistics/tabulate.html tabulate]
| [https://gnu-octave.github.io/statistics/tabulate.html tabulate]
Line 128: Line 107:
! Function
! Function
! Description
! Description
|-
| [https://gnu-octave.github.io/statistics/cl_multinom.html cl_multinom]
| Confidence level of multinomial portions.
|-
|-
| [https://gnu-octave.github.io/statistics/geomean.html geomean]
| [https://gnu-octave.github.io/statistics/geomean.html geomean]
Line 171: Line 147:
=== In external packages ===
=== In external packages ===


<code>bootci</code>, <code>bootstrp</code> are implemented in the [https://gnu-octave.github.io/packages/statistics-resampling statistics-resampling] package.
<code>bootci</code>, <code>bootstrp</code> are implemented in the [https://gnu-octave.github.io/packages/statistics-bootstrap statistics-bootstrap] package.


=== Shadowing Octave core functions ===
=== Shadowing Octave core functions ===
Line 233: Line 209:
| binornd  
| binornd  
|-
|-
| [https://en.wikipedia.org/wiki/Joint_probability_distribution Bivariate Normal]
| [https://en.wikipedia.org/wiki/Joint_probability_distribution Bivariate]
| bvncdf
| bvncdf
|
|
|
|-
| [https://en.wikipedia.org/wiki/Joint_probability_distribution Bivariate Student's <i>t</i>]
| bvtcdf
|
|
|
|
Line 359: Line 329:
| mvnrnd
| mvnrnd
|-
|-
| [https://en.wikipedia.org/wiki/Multivariate_t-distribution Multivariate Student's <i>t</i>]
| [https://en.wikipedia.org/wiki/Multivariate_t-distribution Multivariate Student's T]
| mvtcdf mvtcdfqmc
| mvtcdf mvtcdfqmc
| mvtinv
| mvtinv
Line 383: Line 353:
| ncfrnd
| ncfrnd
|-
|-
| [https://en.wikipedia.org/wiki/Noncentral_t-distribution Noncentral Student's <i>t</i>]
| [https://en.wikipedia.org/wiki/Noncentral_t-distribution Noncentral Student's T]
| nctcdf
| nctcdf
| nctinv
| nctinv
Line 419: Line 389:
| stdnormal_rnd
| stdnormal_rnd
|-
|-
| [https://en.wikipedia.org/wiki/Student%27s_t-distribution Student's <i>t</i>]
| [https://en.wikipedia.org/wiki/Student%27s_t-distribution Student's T]
| tcdf
| tcdf
| tinv
| tinv
Line 534: Line 504:


== Experimental Design ==
== Experimental Design ==
=== Available functions ===


Functions available for computing design matrices.
Functions available for computing design matrices.
Line 594: Line 562:


== Model Fitting ==
== Model Fitting ==
=== Available functions ===


Functions available for fitting or evaluating statistical models.  
Functions available for fitting or evaluating statistical models.  
Line 637: Line 603:


== Hypothesis Testing ==
== Hypothesis Testing ==
=== Available functions ===


Functions available for hypothesis testing
Functions available for hypothesis testing
Line 672: Line 636:
| [https://gnu-octave.github.io/statistics/chi2test.html chi2test]
| [https://gnu-octave.github.io/statistics/chi2test.html chi2test]
| Perform a chi-squared test (for independence or homogeneity).
| Perform a chi-squared test (for independence or homogeneity).
|-
| [https://gnu-octave.github.io/statistics/correlation_test.html correlation_test]
| Perform a correlation coefficient test whether two samples x and y come from uncorrelated populations.
|-
| [https://gnu-octave.github.io/statistics/fishertest.html fishertest]
| Fisher’s exact test.
|-
|-
| [https://gnu-octave.github.io/statistics/friedman.html friedman]
| [https://gnu-octave.github.io/statistics/friedman.html friedman]
| Performs the nonparametric Friedman's test to compare column effects in a two-way layout.
| Performs the nonparametric Friedman's test to compare column effects in a two-way layout.
|-
|-
| [https://gnu-octave.github.io/statistics/hotelling_t2test.html hotelling_t2test]
| https://gnu-octave.github.io/statistics/hotelling_t2test.html hotelling_t2test]
| Compute Hotelling's T^2 ("T-squared") test for a single sample or two dependent samples (paired-samples).
| Compute Hotelling's T^2 ("T-squared") test for a single sample or two dependent samples (paired-samples).
|-
|-
Line 886: Line 844:


== Wrappers ==
== Wrappers ==
=== Available functions ===


Functions available for wrapping other functions or group of functions.
Functions available for wrapping other functions or group of functions.
Line 896: Line 852:
|-
|-
| [https://gnu-octave.github.io/statistics/cdf.html cdf]
| [https://gnu-octave.github.io/statistics/cdf.html cdf]
| This is a wrapper for the NAMEcdf and NAME_cdf functions available in the statistics package.
| This is a wrapper around various NAMEcdf and NAME_cdf functions.
|-
| [https://gnu-octave.github.io/statistics/icdf.html icdf]
| This is a wrapper for the NAMEinv and NAME_inv functions available in the statistics package.
|-
|-
| [https://gnu-octave.github.io/statistics/pdf.html pdf]
| [https://gnu-octave.github.io/statistics/pdf.html pdf]
| This is a wrapper for the NAMEpdf and NAME_pdf functions available in the statistics package.
| This is a wrapper around various NAMEpdf and NAME_pdf functions.
|-
|-
| [https://gnu-octave.github.io/statistics/random.html random]
| [https://gnu-octave.github.io/statistics/random.html random]
| Generates pseudo-random numbers from a given one-, two-, or three-parameter distribution.
| Generates pseudo-random numbers from a given one-, two-, or three-parameter distribution.
|}
|}
=== TODO list ===
Update <code>cdf</code>, <code>pdf</code>, and <code>random</code> to include the latest changes in distribution functions available in statistics-1.5.3.
Missing functions:
<div style="column-count:1;-moz-column-count:1;-webkit-column-count:1">
* <code>icdf</code>
</div>


[[Category:Packages]]
[[Category:Packages]]
[[Category:Missing functions]]
[[Category:Missing functions]]
Please note that all contributions to Octave may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see Octave:Copyrights for details). Do not submit copyrighted work without permission!

To edit this page, please answer the question that appears below (more info):

Cancel Editing help (opens in new window)