::Free Statistics and Forecasting Software::

v1.1.22-r6
 
  Black&White | Blue Theme | Normal Fontsize | Increase Fontsize | Decrease Fontsize | Toggle underline | Secure website (SSL)
 
 
This software module is powered by R

:: Univariate Explorative Data Analysis - Free Statistics Software (Calculator) ::

All rights reserved. The non-commercial (academic) use of this software is free of charge. The only thing that is asked in return is to cite this software when results are used in publications.

This free online software (calculator) computes a series of graphical tools for the purpose of Explorative Data Analysis. If we consider the model

response = constant + random component

then the following assumptions can be tested by the use of this software module:

  • are the data autocorrelated? (The model assumes no autocorrelation)
  • is the random component generated by a fixed distribution? (The model assumes a fixed distribution)
  • is the deterministic component constant? (The model assumes that the distribution has a fixed location)
  • does the random component have a fixed variation? (The model assumes a distribution with fixed variation)


Click here to edit the underlying code of this R Module.

Enter (or paste) your data delimited by hard returns.

Send output to:
Data:
 
Sample Range:
(leave blank to include all observations)
From:
To:
bandwidth of density plot (?)
# lags (autocorrelation function) (?)
Chart options
Width:
Height:

Click here to edit the underlying code of this R Module.






Cite this software as:
Wessa P., (2008), Univariate Explorative Data Analysis (v1.0.8) in Free Statistics Software (v1.1.22-r6), Office for Research Development and Education, URL http://www.wessa.net/rwasp_edauni.wasp/
The R code is based on :
NIST/SEMATECH e-Handbook of Statistical Methods, http://www.itl.nist.gov/div898/handbook/, 2006-10-03.
Diethelm Wuertz, et. al.(2006)., fExtremes: Rmetrics - Extreme Financial Market Data. R package, version 221.10065., http://www.rmetrics.org
Deepayan Sarkar (2006). lattice: Lattice Graphics. R package version 0.13-8.
Bell Lab Trellis Page: URL: http://cm.bell-labs.com/cm/ms/departments/sia/project/trellis/
Cleveland, W.S. (1993), Visualizing Data
Becker, R.A., Cleveland, W.S. and Shyu, M., The Visual Design and Control of Trellis Display, Journal of Computational and Graphical Statistics

Source code of R module
1par1 <- as.numeric(par1)
2par2 <- as.numeric(par2)
3x <- as.ts(x)
4library(lattice)
5bitmap(file="pic1.png")
6plot(x,type="l",main="Run Sequence Plot",xlab="time or index",ylab="value")
7grid()
8dev.off()
9bitmap(file="pic2.png")
10hist(x)
11grid()
12dev.off()
13bitmap(file="pic3.png")
14if (par1 > 0)
15{
16densityplot(~x,col="black",main=paste("Density Plot bw = ",par1),bw=par1)
17} else {
18densityplot(~x,col="black",main="Density Plot")
19}
20dev.off()
21bitmap(file="pic4.png")
22qqnorm(x)
23qqline(x)
24grid()
25dev.off()
26if (par2 > 0)
27{
28bitmap(file="lagplot1.png")
29dum <- cbind(lag(x,k=1),x)
30dum
31dum1 <- dum[2:length(x),]
32dum1
33z <- as.data.frame(dum1)
34z
35plot(z,main="Lag plot (k=1), lowess, and regression line")
36lines(lowess(z))
37abline(lm(z))
38dev.off()
39if (par2 > 1) {
40bitmap(file="lagplotpar2.png")
41dum <- cbind(lag(x,k=par2),x)
42dum
43dum1 <- dum[(par2+1):length(x),]
44dum1
45z <- as.data.frame(dum1)
46z
47mylagtitle <- "Lag plot (k="
48mylagtitle <- paste(mylagtitle,par2,sep="")
49mylagtitle <- paste(mylagtitle,"), and lowess",sep="")
50plot(z,main=mylagtitle)
51lines(lowess(z))
52dev.off()
53}
54bitmap(file="pic5.png")
55acf(x,lag.max=par2,main="Autocorrelation Function")
56grid()
57dev.off()
58}
59summary(x)
60load(file="createtable")
61a<-table.start()
62a<-table.row.start(a)
63a<-table.element(a,"Descriptive Statistics",2,TRUE)
64a<-table.row.end(a)
65a<-table.row.start(a)
66a<-table.element(a,"# observations",header=TRUE)
67a<-table.element(a,length(x))
68a<-table.row.end(a)
69a<-table.row.start(a)
70a<-table.element(a,"minimum",header=TRUE)
71a<-table.element(a,min(x))
72a<-table.row.end(a)
73a<-table.row.start(a)
74a<-table.element(a,"Q1",header=TRUE)
75a<-table.element(a,quantile(x,0.25))
76a<-table.row.end(a)
77a<-table.row.start(a)
78a<-table.element(a,"median",header=TRUE)
79a<-table.element(a,median(x))
80a<-table.row.end(a)
81a<-table.row.start(a)
82a<-table.element(a,"mean",header=TRUE)
83a<-table.element(a,mean(x))
84a<-table.row.end(a)
85a<-table.row.start(a)
86a<-table.element(a,"Q3",header=TRUE)
87a<-table.element(a,quantile(x,0.75))
88a<-table.row.end(a)
89a<-table.row.start(a)
90a<-table.element(a,"maximum",header=TRUE)
91a<-table.element(a,max(x))
92a<-table.row.end(a)
93a<-table.end(a)
94table.save(a,file="mytable.tab")
Delete history
Server DateModuleCommand
Sat, 17 May 2008 14:41:43 -0600Start of session-

Please, send us your feedback!
Overall rating
What do you think about the response time?
Rate the facility with which you interact with our software.
Is the output presented in an understandable (clear) form?
How did you find this website/module?
Do you have any comments about our site?
Do you have any suggestions for our site?
Please enter the code that is displayed in this picture: captcha

To cite Wessa.net in publications use:
Wessa, P. (2008), Free Statistics Software, Office for Research Development and Education,
version 1.1.22-r6, URL http://www.wessa.net/

© Resa R&D, and the 'Office for Research, Development, and Education' - All rights reserved. Academic license for non-commercial use only.
This website is an intellectual and physical property of Resa R&D. This includes: html content, graphical illustrations (gif files), computer software, online or electronic documentation, associated media, and printed materials. The free use of the scientific content, services, and applications in this website is granted for non commercial use only. In any case, the source (url) should always be clearly displayed. Under no circumstances are you allowed to reproduce, copy or redistribute the design, layout, or any content of this website (for commercial use) including any materials contained herein without the express written permission of Resa R&D or the Office for Research, Development, and Education.

Information provided on this web site is provided "AS IS" without warranty of any kind, either express or implied, including, without limitation, warranties of merchantability, fitness for a particular purpose, and noninfringement. We use reasonable efforts to include accurate and timely information and periodically update the information, and software without notice. However, Resa R&D makes no warranties or representations as to the accuracy or completeness of such information (or software), and it assumes no liability or responsibility for errors or omissions in the content of this web site, or any software bugs in online applications. Your use of this web site is AT YOUR OWN RISK. Under no circumstances and under no legal theory shall Resa R&D be liable to you or any other person for any direct, indirect, special, incidental, exemplary, or consequential damages arising from your access to, or use of, this web site.

Software Version : 1.1.22-r6
Algorithms & Software : Prof. dr. P. Wessa
Facilities : Resa R&D - Office for Research, Development, and Education
Server : www.wessa.net

Comments, Feedback & Errors | Privacy Policy | Statistics Resources | Wessa.net Home

 © Wessa.Net 2002-2008  
 
 

Home Page
Equation Plotter
Time Series Analysis (new)
Time Series Analysis (old)
Multiple Regression (new)
Multiple Regression (old)
Descriptive Statistics
Statistical Distributions
Hypothesis Testing

Academic citations
Computations Archive
Search Computations
FAQ
About Wessa.net
Powered by Linux

Server status page
History list
Edit R Code
Google
Web wessa.net