Statistics - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Statistics

 

Linear Regression

Hypothesis Testing

Summary and Tabulation

Visualizations

Linear Regression

All linear regression commands have been updated in Maple 2016 with a new option, summarize, that allows for the display of a summary for the given regression model.

 

 

By default, the Fit command returns the resulting regression model for the given model function:

 

(1.1)

 

The summarize option includes a full summary for each of the regression coefficients, as well as values for the r-squared and adjusted r-squared for the model. Also, the solution module for regression commands has been extended with the ability to return values for r-squared, adjusted r-squared, and the value of the t-statistic for testing whether the corresponding regression coefficient is different than 0 and its corresponding probability.

 

Summary:
----------------
Model: 1.9600000+.16500000*t+.11071429*t^2
----------------
Coefficients:
    Estimate  Std. Error  t-value  P(>|t|)
a    1.9600    1.1720      1.6724   0.1930
b    0.1650    0.7667      0.2152   0.8434
c    0.1107    0.1072      1.0325   0.3778
----------------
R-squared: 0.9252, Adjusted R-squared: 0.8753

 

The summarize option can also be used to return an embedded table, which contains more details on the residuals:

 

Summary

Model:

Coefficients

Estimate

Standard Error

t-value

P(>|t|)

a

b

c

R-squared:

Adjusted R-squared:

Residuals

Residual Sum of Squares

Residual Mean Square

Residual Standard Error

Degrees of Freedom

Five Point Summary

Minimum

First Quartile

Median

Third Quartile

Maximum

Hypothesis Testing

The summarize option has also been added to all hypothesis testing commands. Previously, the infolevel command would have been required to print the results of a hypothesis test as a report.

 

Chi-Square Test on One Sample

Null Hypothesis:

Sample drawn from population with standard deviation equal to 7

Alternative Hypothesis:

Sample drawn from population with standard deviation not equal to 7

Sample Size

Sample Standard Deviation

Distribution

Computed Statistic

Computed p-value

Confidence Interval

Result:

Accepted: This statistical test does not provide enough evidence to conclude that the null hypothesis is false.

Summary and Tabulation

The DataSummary, FivePointSummary, and FrequencyTable commands can also accept a summarize option as well as be used to return summary statistics for DataFrames:

 

1

2

3

mean

standarddeviation

skewness

kurtosis

minimum

maximum

cumulativeweight

Visualizations

There are many new visualizations in Maple 2016 for statistics and data analysis, including new options for creating colorschemes using point values:

Maple 2016 also introduces a new visualization in Statistics for generating heat maps. A heat map is a visualization method that represents the magnitude of the included data as a discrete density plot.

There are also two new visualizations related to Principal Component Analysis: Biplot, and ScreePlot.

(4.1)

The new GridPlot command is useful for visualizing multidimensional datasets. GridPlot generates a matrix of plots corresponding to the columns of a dataset.

 


Download Help Document