::Free Statistics and Forecasting Software::

v1.1.23-r6
 
  Black&White | Blue Theme | Normal Fontsize | Increase Fontsize | Decrease Fontsize | Toggle underline
Secure website (SSL) | Private
 
 


This software module is powered by R

:: CARE Data - Boxplots and Scatterplot Matrix - 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 BoxPlot a matrix observations by row and variables by colummn.

The (default) data vectors were abstracted from the study dataset Bibliographic Citation: Ramey, Craig T., James J. Gallagher, Frances A. Campbell, Barbara H. Wasik, and Joseph J. Sparling. CAROLINA ABECEDARIAN PROJECT AND THE CAROLINA APPROACH TO RESPONSIVE EDUCATION (CARE), 1972-1992 [Computer file]. ICPSR version. Chapel Hill, NC: University of North Carolina [producer], 2002. Ann Arbor, MI: Inter-university Consortium for Political and Social Research [distributor], 2004.

This R module is used in Workshop 3 of the PY2224 statistics course at Aston University, UK.

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

Enter (or paste) a matrix (table) containing all data (time) series. Every column represents a different variable and must be delimited by a space or Tab. Every row represents a period in time (or category) and must be delimited by hard returns. The easiest way to enter data is to copy and paste a block of spreadsheet cells. Please, do not use commas or spaces to seperate groups of digits!

Send output to:
Data X:
Names of X columns:
Sample Range:
(leave blank to include all observations)
From:
To:
box colour 
Notched Boxes 
% to trim 
Chart options
Width:
Height:
Title:
Label y-axis:
Label x-axis:

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




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









Source code of R module
1par1 <- as.numeric(par1) #colour
2par2<- as.logical(par2) # Notches ?
3par3<-as.numeric(par3) # % trim
4if(par3>45){par3<-45;warning("trim limited to 45%")}
5if(par3<0){par3<-0;warning("negative trim makes no sense. Trim is zero.")}
6lotrm<-as.integer(length(y[1,])*par3/100)+1
7hitrm<-as.integer(length(y[1,])*(100-par3)/100)
8y1<-array(dim=c(dim(y)[1], hitrm-lotrm+1), dimnames=list(dimnames(y)[[1]], 1:(hitrm-lotrm+1) ))
9for(i in 1:dim(y)[1]){
10tmp<-order(y[i,])
11y1[i,]<- y[i, tmp[lotrm:hitrm] ]
12}
13bitmap(file='test2.png')
14pairs(t(y))
15dev.off()
16y<-y1
17z <- as.data.frame(t(y))
18bitmap(file='test1.png')
19(r<-boxplot(z ,xlab=xlab,ylab=ylab,main=main,notch=par2,col=par1))
20dev.off()
21load(file='createtable')
22a<-table.start()
23a<-table.row.start(a)
24a<-table.element(a,hyperlink('http://www.xycoon.com/overview.htm','Boxplot statistics','Boxplot overview'),6,TRUE)
25a<-table.row.end(a)
26a<-table.row.start(a)
27a<-table.element(a,'Variable',1,TRUE)
28a<-table.element(a,hyperlink('http://www.xycoon.com/lower_whisker.htm','lower whisker','definition of lower whisker'),1,TRUE)
29a<-table.element(a,hyperlink('http://www.xycoon.com/lower_hinge.htm','lower hinge','definition of lower hinge'),1,TRUE)
30a<-table.element(a,hyperlink('http://www.xycoon.com/central_tendency.htm','median','definitions about measures of central tendency'),1,TRUE)
31a<-table.element(a,hyperlink('http://www.xycoon.com/upper_hinge.htm','upper hinge','definition of upper hinge'),1,TRUE)
32a<-table.element(a,hyperlink('http://www.xycoon.com/upper_whisker.htm','upper whisker','definition of upper whisker'),1,TRUE)
33a<-table.row.end(a)
34for (i in 1:length(y[,1]))
35{
36a<-table.row.start(a)
37a<-table.element(a,dimnames(t(x))[[2]][i],1,TRUE)
38for (j in 1:5)
39{
40a<-table.element(a,signif(r$stats[j,i], digits=4))
41}
42a<-table.row.end(a)
43}
44a<-table.end(a)
45table.save(a,file='mytable.tab')
46if (par2){
47a<-table.start()
48a<-table.row.start(a)
49a<-table.element(a,'Boxplot Notches',4,TRUE)
50a<-table.row.end(a)
51a<-table.row.start(a)
52a<-table.element(a,'Variable',1,TRUE)
53a<-table.element(a,'lower bound',1,TRUE)
54a<-table.element(a,'median',1,TRUE)
55a<-table.element(a,'upper bound',1,TRUE)
56a<-table.row.end(a)
57for (i in 1:length(y[,1]))
58{
59a<-table.row.start(a)
60a<-table.element(a,dimnames(t(x))[[2]][i],1,TRUE)
61a<-table.element(a,signif(r$conf[1,i], digits=4))
62a<-table.element(a, signif(r$stats[3,i], digits=4))
63a<-table.element(a,signif(r$conf[2,i], digits=4))
64a<-table.row.end(a)
65}
66a<-table.end(a)
67table.save(a,file='mytable1.tab')
68}
69a<-table.start()
70a<-table.row.start(a)
71a<-table.element(a,'Boxplot Means',4,TRUE)
72a<-table.row.end(a)
73a<-table.row.start(a)
74a<-table.element(a,'Variable',1,TRUE)
75a<-table.element(a,hyperlink('http://www.xycoon.com/trimmed_mean.htm','trimmed mean','definition of trimmed mean'),1,TRUE)
76a<-table.element(a,hyperlink('http://www.xycoon.com/unbiased1.htm','unbiased SD','definition of unbiased SD'),1,TRUE)
77a<-table.row.end(a)
78for (i in 1:length(y[,1]))
79{
80a<-table.row.start(a)
81a<-table.element(a,dimnames(t(x))[[2]][i],1,TRUE)
82a<-table.element(a,signif(mean(z[i], trim=par3/100, na.rm=TRUE), digits=4))
83a<-table.element(a,signif(sd(z[i], na.rm=TRUE), digits=4))
84a<-table.row.end(a)
85}
86a<-table.end(a)
87table.save(a,file='mytable2.tab')
Top | Output | Charts | References | History | Feedback



Cite this software as:
Ian E. Holliday, 2010, CARE Boxplots and Scatterplot Matrix (v1.0.2) in Free Statistics Software (v1.1.23-r6), Office for Research Development and Education, URL http://www.wessa.net/Ian.Holliday/rwasp_CARE%20Data%20Boxplot.wasp/
The R code is based on :
Ramey, Craig T., James J. Gallagher, Frances A. Campbell, Barbara H. Wasik, and Joseph J. Sparling. CAROLINA ABECEDARIAN PROJECT AND THE CAROLINA APPROACH TO RESPONSIVE EDUCATION (CARE), 1972-1992 [Computer file]. ICPSR version. Chapel Hill, NC: University of North Carolina [producer], 2002. Ann Arbor, MI: Inter-university Consortium for Political and Social Research [distributor], 2004.
Top | Output | Charts | References | History | Feedback
Last computationDelete history
Server DateModuleCommand
Sat, 18 May 2013 21:53:06 -0400CARE Data - Boxplots and Scatterplot MatrixPrint | Word | Excel | Blog this | Delete
Sat, 18 May 2013 21:53:06 -0400Start of session-
Top | Output | Charts | References | History | Feedback

To cite Wessa.net in publications use:
Wessa, P. (2013), Free Statistics Software, Office for Research Development and Education,
version 1.1.23-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.23-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-2013  
 
 

Home Page
Equation Plotter
Time Series Analysis
Multiple Regression
Descriptive Statistics
Statistical Distributions
Hypothesis Testing
Simon Fraser University
Aston University

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

Server status page
Any R Server
Installed Packages

History list
Edit R Code