<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.teaching">
    <title>gmane.comp.lang.r.teaching</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.teaching</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.teaching/557"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.teaching/556"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.teaching/555"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.teaching/554"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.teaching/553"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.teaching/552"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.teaching/551"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.teaching/550"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.teaching/549"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.teaching/548"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.teaching/547"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.teaching/546"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.teaching/545"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.teaching/544"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.teaching/543"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.teaching/542"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.teaching/541"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.teaching/540"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.teaching/539"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.teaching/538"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.teaching/557">
    <title>Re: graphing inequalities (intervals) in onevarible</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.teaching/557</link>
    <description>&lt;pre&gt;You could perhaps say what you tried....

Michael

On May 9, 2013, at 12:33, Yahoo! &amp;lt;aboueiss&amp;lt; at &amp;gt;yahoo.com&amp;gt; wrote:


[[alternative HTML version deleted]]

&lt;/pre&gt;</description>
    <dc:creator>Michael Weylandt</dc:creator>
    <dc:date>2013-05-09T13:07:23</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.teaching/556">
    <title>Re: graphing inequalities (intervals) in onevarible</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.teaching/556</link>
    <description>&lt;pre&gt;
Check out the intervals packages:

library(intervals)
example(plot.Intervals)

--
Statistics &amp;amp; Software Consulting
GKX Group, GKX Associates Inc.
tel: 1-877-GKX-GROUP
email: ggrothendieck at gmail.com

&lt;/pre&gt;</description>
    <dc:creator>Gabor Grothendieck</dc:creator>
    <dc:date>2013-05-09T12:38:07</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.teaching/555">
    <title>Re: graphing inequalities (intervals) in one varible</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.teaching/555</link>
    <description>&lt;pre&gt;Something like this might get you at least part of the way there:

const = function(x) {x*0}
plot(c(-100,100), c(0,0), col="gray60", lty=3, lwd=2, yaxt="n",
     xlim=c(-10,10), type="l",
     xlab="", ylab="")
curve(const, 3, 8, lwd=4, add=TRUE)
points(3, 0, pch=16, cex=1.5)

Then you can fiddle with the axis() command to get the x-axis looking how you want it. Or you can turn off the x-axis and add axis-like annotations right beneath the plotted interval.

You can also package the code above into a function for plotting any interval(s) entered by the user.

HTH,
Joel

On May 9, 2013, at 4:33 AM, Yahoo! wrote:



[[alternative HTML version deleted]]

&lt;/pre&gt;</description>
    <dc:creator>Joel Schwartz</dc:creator>
    <dc:date>2013-05-09T12:32:24</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.teaching/554">
    <title>Re: graphing inequalities (intervals) in onevarible</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.teaching/554</link>
    <description>&lt;pre&gt;Dear Michael:

Thank you very much.

I am still not able to make it works.


thanks
abou

========================

AbouEl-Makarim Aboueissa

Sozan Elsalakawy

Mohamed Agamia



246 Auburn Street, #158

Portland, ME 04103

USA



Tel: (207) 797-2724

Email: aboueiss&amp;lt; at &amp;gt;yahoo.com

--- On Thu, 5/9/13, R. Michael Weylandt &amp;lt;michael.weylandt&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:

From: R. Michael Weylandt &amp;lt;michael.weylandt&amp;lt; at &amp;gt;gmail.com&amp;gt;
Subject: Re: [R-sig-teaching] graphing inequalities (intervals) in one varible
To: "Yahoo!" &amp;lt;aboueiss&amp;lt; at &amp;gt;yahoo.com&amp;gt;
Cc: "R-sig-teaching" &amp;lt;r-sig-teaching&amp;lt; at &amp;gt;r-project.org&amp;gt;
Date: Thursday, May 9, 2013, 6:49 AM

Here's the start of a function. I'll leave it to you to do it better
(it should probably also use S4 methods, but that's another project):

interval &amp;lt;- function(lower = -Inf, upper = Inf, lower_closed = FALSE,
upper_closed = FALSE){
  structure(.Data = NULL, lower = lower, upper = upper, lower_closed =
lower_closed, upper_closed = upper_closed, class = 'interval')
}

plot.interval &amp;lt;- function(x){
 l &amp;lt;- att&lt;/pre&gt;</description>
    <dc:creator>Yahoo!</dc:creator>
    <dc:date>2013-05-09T11:33:22</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.teaching/553">
    <title>Re: graphing inequalities (intervals) in onevarible</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.teaching/553</link>
    <description>&lt;pre&gt;Here's the start of a function. I'll leave it to you to do it better
(it should probably also use S4 methods, but that's another project):

interval &amp;lt;- function(lower = -Inf, upper = Inf, lower_closed = FALSE,
upper_closed = FALSE){
  structure(.Data = NULL, lower = lower, upper = upper, lower_closed =
lower_closed, upper_closed = upper_closed, class = 'interval')
}

plot.interval &amp;lt;- function(x){
 l &amp;lt;- attr(x, "lower")
 u &amp;lt;- attr(x, "upper")

 r &amp;lt;- c(l, u) * c(if(l &amp;gt; 0) 0.7 else 1.2, if(u &amp;gt; 0) 1.2 else 0.7)
 plot(r, c(0,1), main = '', bty = 'n', xlab = '', ylab = '', yaxt =
'n', type = 'n', xaxt = 'n')

 axis(1, at = seq(r[1], r[2], length.out = 10))

 lines(c(l, u), c(0.5, 0.5), col = 2, lwd = 2)

 lc &amp;lt;- attr(x, 'lower_closed')
 uc &amp;lt;- attr(x, 'upper_closed')


 points(c(l, u), c(0.5, 0.5), pch = c(1, 19)[c(lc, uc) + 1], col = 2, cex = 2)

}

On Wed, May 8, 2013 at 12:10 PM, Yahoo! &amp;lt;aboueiss&amp;lt; at &amp;gt;yahoo.com&amp;gt; wrote:

&lt;/pre&gt;</description>
    <dc:creator>R. Michael Weylandt</dc:creator>
    <dc:date>2013-05-09T10:49:19</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.teaching/552">
    <title>Re: graphing inequalities (intervals) in one varible</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.teaching/552</link>
    <description>&lt;pre&gt;You may want to try the curve function.  For example:

curve(x^2,-1,1,xlim=c(-3,5),ylim=c(0,9))
 curve(x^2,2,3,add=TRUE)

Todd Mattson
DeVry University

-----Original Message-----
From: r-sig-teaching-bounces&amp;lt; at &amp;gt;r-project.org [mailto:r-sig-teaching-bounces&amp;lt; at &amp;gt;r-project.org] On Behalf Of Yahoo!
Sent: Wednesday, May 08, 2013 6:10 AM
To: r-sig-teaching&amp;lt; at &amp;gt;r-project.org
Subject: [R-sig-teaching] graphing inequalities (intervals) in one varible

Dear All:

It seems a very silly question. But I never tried it before. I am teaching a college algebra class this summer. 

I need some help with graphing intervals on the real line. For examples:

{x | -7&amp;lt;= x &amp;lt; 5 and x &amp;gt; 7}

{x | x &amp;gt; 3}

etc...


thank you very much
abou

========================

AbouEl-Makarim Aboueissa

Sozan Elsalakawy

Mohamed Agamia



246 Auburn Street, #158

Portland, ME 04103

USA



Tel: (207) 797-2724

Email: aboueiss&amp;lt; at &amp;gt;yahoo.com
[[alternative HTML version deleted]]

_______________________________________________
R-sig-teaching&amp;lt; at &amp;gt;r-project.org mailing l&lt;/pre&gt;</description>
    <dc:creator>Mattson, Todd</dc:creator>
    <dc:date>2013-05-08T18:53:32</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.teaching/551">
    <title>graphing inequalities (intervals) in one varible</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.teaching/551</link>
    <description>&lt;pre&gt;Dear All:

It seems a very silly question. But I never tried it before. I am teaching a college algebra class this summer. 

I need some help with graphing intervals on the real line. For examples:

{x | -7&amp;lt;= x &amp;lt; 5 and x &amp;gt; 7}

{x | x &amp;gt; 3}

etc...


thank you very much
abou

========================

AbouEl-Makarim Aboueissa

Sozan Elsalakawy

Mohamed Agamia



246 Auburn Street, #158

Portland, ME 04103

USA



Tel: (207) 797-2724

Email: aboueiss&amp;lt; at &amp;gt;yahoo.com
[[alternative HTML version deleted]]

&lt;/pre&gt;</description>
    <dc:creator>Yahoo!</dc:creator>
    <dc:date>2013-05-08T11:10:01</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.teaching/550">
    <title>Re: create a negative skewed plot (density)</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.teaching/550</link>
    <description>&lt;pre&gt;

On Apr 14, 2013, at 4:52 PM, Yahoo! &amp;lt;aboueiss&amp;lt; at &amp;gt;yahoo.com&amp;gt; wrote:


But that's vastly under specified; there's no such thing as _the_ skewed distribution. You simply need to pick a skewed distribution and then plot it however you want. You've already been pointed to one resource on how to do so. 


How about something like this? 

layout(1:3)
x &amp;lt;- rnorm(1e5, 4, 1)
plot(density(x))
plot(density(log(x)))
plot(density(exp(x)))

Michael



&lt;/pre&gt;</description>
    <dc:creator>R. Michael Weylandt &lt;michael.weylandt&lt; at &gt;gmail.com&gt;</dc:creator>
    <dc:date>2013-04-14T21:02:17</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.teaching/549">
    <title>create a negative skewed plot (density)</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.teaching/549</link>
    <description>&lt;pre&gt;

Dear All: Just fix my previous email.



I am trying to show the symmetric and skewed (both left and right) distributions to my students. But I could not create a negative skewed distribution *or negative skewed graph). I am still not be able to figure it out.
 

with many thanks

abou



========================

AbouEl-Makarim Aboueissa

Sozan Elsalakawy

Mohamed Agamia



246 Auburn Street, #158

Portland, ME 04103

USA



Tel: (207) 797-2724

Email: aboueiss&amp;lt; at &amp;gt;yahoo.com
[[alternative HTML version deleted]]

&lt;/pre&gt;</description>
    <dc:creator>Yahoo!</dc:creator>
    <dc:date>2013-04-14T20:52:15</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.teaching/548">
    <title>Re: Create and graph a negative skeweddistribution (curve)</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.teaching/548</link>
    <description>&lt;pre&gt;Pray tell, what is a "negative distribution"?

To be a little more helpful, consult the probability chapter in the
Introduction to R that comes with the software in both html and pdf
form to learn which distributions are built into the base distribution
of R. Perhaps you'll find what you need there. According to a recent
R-bloggers post, counting the base distribution and the contributed
packages on CRAN, there are approximately 170 probability
distributions available in R. You could try package sos (which
requires an active Internet connection) to find the distribution you
want if the Intro to R perusal comes up empty:

# install.packages("sos")
library(sos)
findFn("my_search_string")

It will return a web page of (partial) matches to your query string.

If your distribution is continuous, you could consider the curve()
function, or just your everyday plot() with type = "l". For discrete
distibutions, you could consider barplot() or plot() with type = "h";
see the help page for plot.default() for an example&lt;/pre&gt;</description>
    <dc:creator>Dennis Murphy</dc:creator>
    <dc:date>2013-04-14T20:22:34</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.teaching/547">
    <title>Create and graph a negative skewed distribution(curve)</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.teaching/547</link>
    <description>&lt;pre&gt;Dear All:

How I can create and plot a negative distribution (curve) in R.

with many thanks
abou


========================

AbouEl-Makarim Aboueissa

Sozan Elsalakawy

Mohamed Agamia



246 Auburn Street, #158

Portland, ME 04103

USA



Tel: (207) 797-2724

Email: aboueiss&amp;lt; at &amp;gt;yahoo.com
[[alternative HTML version deleted]]

&lt;/pre&gt;</description>
    <dc:creator>Yahoo!</dc:creator>
    <dc:date>2013-04-14T16:25:50</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.teaching/546">
    <title>wielbili</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.teaching/546</link>
    <description>&lt;pre&gt; http://www.davidsonhomes.com/11a-hdnsdsjreunx-4.php 













  quinlan, ven conmigo al patio de armas; te explicare las tareas que quiero que realicen los hombres durante mi ausencla a8776c6cab9e8275a1f7f5088fef19b5a7e7b8e7bafa6774e284343ff2af5a7aS 
[[alternative HTML version deleted]]

&lt;/pre&gt;</description>
    <dc:creator>Ali Zanaty</dc:creator>
    <dc:date>2013-04-12T11:03:09</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.teaching/545">
    <title>Re: R-sig-teaching Digest, Vol 61, Issue 1</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.teaching/545</link>
    <description>&lt;pre&gt;

On 3/11/2013 4:00 AM, r-sig-teaching-request&amp;lt; at &amp;gt;r-project.org wrote:

...[snip]...

Excellent, excellent work.  Professor Horton, please extend
my best to your students.

Wayne Smith, Ph.D.
Department of Management
California State University, Northridge

...[snip]...

&lt;/pre&gt;</description>
    <dc:creator>Wayne Smith</dc:creator>
    <dc:date>2013-03-11T16:43:22</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.teaching/544">
    <title>Updates on "How to Do it in R" for the"Statistical Sleuth" and "Introduction to the Practice ofStatistics"</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.teaching/544</link>
    <description>&lt;pre&gt;A group of students and faculty at Smith College have created a series of files to help describe how to undertake analyses using R that are introduced as examples in two excellent textbooks: the Second and Third editions of the Statistical Sleuth: A Course in Methods of Data Analysis (2002, Fred Ramsey and Dan Schafer) and the Sixth edition of Introduction to the Practice of Statistics (2009, David S. Moore, George P. McCabe and Bruce A. Craig).  If you are using either of these books, or would like to see straightforward ways to undertake analyses in R for ue in intro and intermediate statistics courses, these may be of interest.

The files can be found at http://www.math.smith.edu/~nhorton/sleuth and http://www.math.smith.edu/~nhorton/ips6e, respectively. We have include both formatted pdf files as well as the original knitr files which were used to generate the output. Knitr is an elegant, flexible and fast means to undertake reproducible analysis and dynamic report generation within R and RStudio.  

Thi&lt;/pre&gt;</description>
    <dc:creator>Nicholas Horton</dc:creator>
    <dc:date>2013-03-10T12:53:39</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.teaching/543">
    <title>R for Numercal Analysis</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.teaching/543</link>
    <description>&lt;pre&gt;Dear All R users:

I am going to teach a numerical analysis class (undergraduate level) in Summer 2013. I am wondering if someone have R notes used in the numerical analysis methods.

thank you very much

Ali

[[alternative HTML version deleted]]

&lt;/pre&gt;</description>
    <dc:creator>Ali Zanaty</dc:creator>
    <dc:date>2013-02-08T13:20:22</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.teaching/542">
    <title>Re: R-sig-teaching Digest, Vol 59, Issue 9</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.teaching/542</link>
    <description>&lt;pre&gt;

Allen,

You might be interested in checking out the HELP study dataset, which is included as part of the "mosaic" package in R as well as in a variety of formats from the book "SAS and R: Data Management, Statistical Analysis and Graphics" book website at http://www.math.smith.edu/sasr/datasets.php.

This includes deidentified data from a randomized trial of n=470 subjects recruited from a detox center in Boston who were randomized to usual care or an intervention to link them to primary care.  Approximately 200 variables are measured at each of baseline, 6 months, 12 month, 18 month and 24 month follow up.  There are a variety of sociobehavioral, health, and health services questions which can be addressed.

The complete set of instruments can be downloaded from http://www.math.smith.edu/help.

Nick

Nicholas Horton 
Department of Mathematics and Statistics, Smith College
Clark Science Center, Northampton, MA 01063-0001
http://www.math.smith.edu/~nhorton

&lt;/pre&gt;</description>
    <dc:creator>Nicholas Horton</dc:creator>
    <dc:date>2013-02-07T13:43:26</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.teaching/541">
    <title>Re: Handbook of Small Datasets</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.teaching/541</link>
    <description>&lt;pre&gt;Hi:

As promised, I have rolled up a few versions of the files in HDLMO and
put them in my Dropbox.

(1) Zipped csv form:
https://dl.dropbox.com/u/57587928/csv.zip

(2) Individual R binary objects in zip form:
https://dl.dropbox.com/u/57587928/Rdata.zip

(3) All of the R objects in one .Rdata file:
https://dl.dropbox.com/u/57587928/hdlmo.Rdata

Should you choose to access one or more of these archives, I
******strongly******* encourage you to read the index.txt and
README.txt files that come with the zipped archives. I took more than
a few liberties with renaming R objects relative to the names of the
original datasets (originally, this was meant for my own use), and
many data sets contain more than one R object (and hence more than one
corresponding .Rdata or .csv file). The file index.txt provides the
roadmap that connects the numbers and descriptions of the original
data sets to the names of the corresponding R objects, their
class/type and the name of the csv file to which the R object was
written. The R&lt;/pre&gt;</description>
    <dc:creator>Dennis Murphy</dc:creator>
    <dc:date>2013-02-07T01:27:08</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.teaching/540">
    <title>Re: Handbook of Small Datasets</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.teaching/540</link>
    <description>&lt;pre&gt;
The datsets are also available on the publisher's website.  I just
compared several files among those, the versions at NCSU, and the
version that came on a floppy with the book when it first came out.
File sizes are exactly the same and for the files I looked inside the
layout is sheer madness in all three versions.

Forwarded message:


-------&amp;gt;  First-time AP Stats. teacher?  Help is on the way! See
http://courses.ncssm.edu/math/Stat_Inst/Stats2007/Bob%20Hayden/Relief.html
      _
     | |          Robert W. Hayden
     | |          142 Main Street
    /  |          Apartment 104
   |   |          Jaffrey, New Hampshire 03452  USA
   |   |          email: bob&amp;lt; at &amp;gt; the site below
  /    |          website: http://statland.org
 | x   /          phone: (603) 532-7224 (home)
 ''''''

&lt;/pre&gt;</description>
    <dc:creator>Bob</dc:creator>
    <dc:date>2013-01-31T12:57:49</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.teaching/539">
    <title>Re: Handbook of Small Datasets</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.teaching/539</link>
    <description>&lt;pre&gt;
I just looked at a couple of files at NCSU and they looked like the
original files on the disk supplied with the book.  Has anyone found
ones there that are NOT as originally supplied?  Here is an example
(made up) of the kind of problems in the original files.  You might
have a data set with three variables, x and y quantitative, and z
categorical with three groups.  The data file looks just like the
table in the book: six columns, x,y,x,y,x,y with the pairs matching
z=a,b,c.  So the given data have to be stacked and the categorical
variable created.  Not too horrendous if you just want to use that one
datsaset but virtually all the files have similar (often worse)
problems, i.e., you cannot read them into an R dataframe as-is.  You
can find other actual examples in my review

  Review of Two Collections of Data for Use in a First Course in
  Statistics, The American Statistician, Vol.50, No.2 (May 1996), 
  pp. 168-169.
  
I cleaned up and used about 20 datasets myself.  At the time I wrote
the review I h&lt;/pre&gt;</description>
    <dc:creator>Bob</dc:creator>
    <dc:date>2013-01-31T11:26:02</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.teaching/538">
    <title>Re: Handbook of Small Datasets</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.teaching/538</link>
    <description>&lt;pre&gt;That's what the book is for: its purpose is to describe the variables
and context of each data set. The book 'Data' by Andrews and Herzberg
(1985) is similar in that respect. As I mentioned to Bob privately, I
thought about making a R package of the data sets in HDLMO several
years ago because I used a number of them in teaching, but then
realized that if I wrote the help pages, I'd essentially be violating
the copyright of the book...so that project died. But I do have a
collection of R objects for the data sets which I'm editing and hope
to finish before the weekend is out. Bob prefers a zipped csv archive,
but I can make an R binary available (or a zipped version of .Rdata
files) if anyone is interested.

Dennis

On Wed, Jan 30, 2013 at 7:54 PM, Jeff Laux &amp;lt;jefflaux&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:

&lt;/pre&gt;</description>
    <dc:creator>Dennis Murphy</dc:creator>
    <dc:date>2013-01-31T09:58:54</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.teaching/537">
    <title>Re: Handbook of Small Datasets</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.teaching/537</link>
    <description>&lt;pre&gt;Yes.  They can be found on NC State's Statistics department's website:

      http://www.stat.ncsu.edu/working_groups/sas/sicl/data/

However, the accompanying stories don't exist.  What is posted is just 
tab delimited text files with numeric data.  Someone else will have to 
say what the numbers are supposed to mean.


On 1/30/2013 6:48 PM, Bob wrote:

&lt;/pre&gt;</description>
    <dc:creator>Jeff Laux</dc:creator>
    <dc:date>2013-01-31T03:54:06</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.lang.r.teaching">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.lang.r.teaching</link>
  </textinput>
</rdf:RDF>
