Difference between revisions of "Univariate data analysis (2013)"
Jump to navigation
Jump to search
Kevin Dunn (talk | contribs) m |
Kevin Dunn (talk | contribs) m |
||
Line 46: | Line 46: | ||
* [[Image:Nuvola_mimetypes_pdf.png|20px|link=Media:2013-4C3-Overheads-Univariate-data-analysis.pdf]] [[Media:2013-4C3-Overheads-Univariate-data-analysis.pdf|Slides for class]] | * [[Image:Nuvola_mimetypes_pdf.png|20px|link=Media:2013-4C3-Overheads-Univariate-data-analysis.pdf]] [[Media:2013-4C3-Overheads-Univariate-data-analysis.pdf|Slides for class]] | ||
== Software source code == | |||
Please follow the [[Software_tutorial|software tutorial]] to install and run the course software. Here was the example used in class today: | |||
<syntaxhighlight lang="rsplus"> | |||
# Read data from a web address | |||
batch <- read.csv('http://datasets.connectmv.com/file/batch-yields.csv') | |||
</syntaxhighlight> |
Revision as of 21:30, 15 January 2013
Class date(s): | 15 to 24 January 2013 | ||||
(PDF) | Course slides | ||||
| |||||
Course notes and slides
- Course textbook (print chapter 2)
- Slides for class
Software source code
Please follow the software tutorial to install and run the course software. Here was the example used in class today:
# Read data from a web address
batch <- read.csv('http://datasets.connectmv.com/file/batch-yields.csv')