PDF R Programming for Data Science 1st Edition Roger Peng download
PDF R Programming for Data Science 1st Edition Roger Peng download
com
https://textbookfull.com/product/r-programming-for-data-
science-1st-edition-roger-peng/
OR CLICK BUTTON
DOWNLOAD NOW
https://textbookfull.com/product/r-for-data-science-1st-edition-
garrett-grolemund/
textboxfull.com
Programming Skills for Data Science 1st Edition Michael
Freeman
https://textbookfull.com/product/programming-skills-for-data-
science-1st-edition-michael-freeman/
textboxfull.com
https://textbookfull.com/product/functional-data-structures-in-r-
advanced-statistical-programming-in-r-mailund/
textboxfull.com
https://textbookfull.com/product/advanced-r-data-programming-and-the-
cloud-1st-edition-matt-wiley/
textboxfull.com
https://textbookfull.com/product/doing-data-science-in-r-an-
introduction-for-social-scientists-1st-edition-mark-andrews/
textboxfull.com
R Programming for Data Science
Roger D. Peng
This book is for sale at http://leanpub.com/rprogramming
This is a Leanpub book. Leanpub empowers authors and publishers with the Lean Publishing
process. Lean Publishing is the act of publishing an in-progress ebook using lightweight tools and
many iterations to get reader feedback, pivot until you have the right book and build traction once
you do.
1. Stay in Touch! . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
2. Preface . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
15. Functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 72
15.1 Functions in R . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 72
15.2 Your First Function . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 72
15.3 Argument Matching . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 75
15.4 Lazy Evaluation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 77
15.5 The ... Argument . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 78
15.6 Arguments Coming After the ... Argument . . . . . . . . . . . . . . . . . . . . . . . 79
15.7 Summary . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 80
23. Data Analysis Case Study: Changes in Fine Particle Air Pollution in the U.S. . . . . . . 148
23.1 Synopsis . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 148
23.2 Loading and Processing the Raw Data . . . . . . . . . . . . . . . . . . . . . . . . . . . 148
23.3 Results . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 150
around the department, I decided to start a “brown bag” series where every week for about an hour
I would talk about something you could do in R (which wasn’t much, really). People seemed to like
it, if only because there wasn’t really anyone to turn to if you wanted to learn about R.
By the time I left grad school in 2003, the department had essentially switched over from XLisp-
Stat to R for all its work (although there were a few hold outs). Jan discusses the rationale for the
transition in a paper³ in the Journal of Statistical Software.
In the next step of my career, I went to the Department of Biostatistics⁴ at the Johns Hopkins
Bloomberg School of Public Health, where I have been for the past 16 years. When I got to Johns
Hopkins people already seemed into R. Most people had abandoned S-PLUS a while ago and were
committed to using R for their research. Of all the available statistical packages, R had the most
powerful and expressive programming language, which was perfect for someone developing new
statistical methods.
However, we didn’t really have a class that taught students how to use R. This was a problem because
most of our grad students were coming into the program having never heard of R. Most likely in
their undergraduate programs, they used some other software package. So along with Rafael Irizarry,
Brian Caffo, Ingo Ruczinski, and Karl Broman, I started a new class to teach our graduate students
R and a number of other skills they’d need in grad school.
The class was basically a weekly seminar where one of us talked about a computing topic of interest.
I gave some of the R lectures in that class and when I asked people who had heard of R before, almost
no one raised their hand. And no one had actually used it before. The main selling point at the time
was “It’s just like S-PLUS but it’s free!” A lot of people had experience with SAS or Stata or SPSS.
A number of people had used something like Java or C/C++ before and so I often used that as a
reference frame. No one had ever used a functional-style of programming language like Scheme or
Lisp.
To this day, I still teach the class, known a Biostatistics 140.776 (“Statistical Computing”). However,
the nature of the class has changed quite a bit over the years. The population of students (mostly
first-year graduate students) has shifted to the point where many of them have been introduced to R
as undergraduates. This trend mirrors the overall trend with statistics where we are seeing more and
more students do undergraduate majors in statistics (as opposed to, say, mathematics). Eventually,
by 2008–2009, when I’d asked how many people had heard of or used R before, everyone raised
their hand. However, even at that late date, I still felt the need to convince people that R was a “real”
language that could be used for real tasks.
R has grown a lot in recent years, and is being used in so many places now, that I think it’s
essentially impossible for a person to keep track of everything that is going on. That’s fine, but
it makes “introducing” people to R an interesting experience. Nowadays in class, students are often
teaching me something new about R that I’ve never seen or heard of before (they are quite good
at Googling around for themselves). I feel no need to “bring people over” to R. In fact it’s quite the
opposite–people might start asking questions if I weren’t teaching R.
³http://www.jstatsoft.org/v13/i07
⁴http://www.biostat.jhsph.edu
Preface 4
This book comes from my experience teaching R in a variety of settings and through different stages
of its (and my) development. Much of the material has been taken from by Statistical Computing
class as well as the R Programming⁵ class I teach through Coursera.
I’m looking forward to teaching R to people as long as people will let me, and I’m interested in
seeing how the next generation of students will approach it (and how my approach to them will
change). Overall, it’s been just an amazing experience to see the widespread adoption of R over the
past decade. I’m sure the next decade will be just as amazing.
⁵https://www.coursera.org/course/rprog
3. History and Overview of R
There are only two kinds of languages: the ones people complain about and the ones
nobody uses —Bjarne Stroustrup
3.1 What is R?
This is an easy question to answer. R is a dialect of S.
3.2 What is S?
S is a language that was developed by John Chambers and others at the old Bell Telephone
Laboratories, originally part of AT&T Corp. S was initiated in 1976² as an internal statistical analysis
environment—originally implemented as Fortran libraries. Early versions of the language did not
even contain functions for statistical modeling.
In 1988 the system was rewritten in C and began to resemble the system that we have today (this
was Version 3 of the language). The book Statistical Models in S by Chambers and Hastie (the white
book) documents the statistical analysis functionality. Version 4 of the S language was released in
1998 and is the version we use today. The book Programming with Data by John Chambers (the
green book) documents this version of the language.
Since the early 90’s the life of the S language has gone down a rather winding path. In 1993 Bell Labs
gave StatSci (later Insightful Corp.) an exclusive license to develop and sell the S language. In 2004
Insightful purchased the S language from Lucent for $2 million. In 2006, Alcatel purchased Lucent
Technologies and is now called Alcatel-Lucent.
Insightful sold its implementation of the S language under the product name S-PLUS and built a
number of fancy features (GUIs, mostly) on top of it—hence the “PLUS”. In 2008 Insightful was
acquired by TIBCO for $25 million. As of this writing TIBCO is the current owner of the S language
and is its exclusive developer.
The fundamentals of the S language itself has not changed dramatically since the publication of the
Green Book by John Chambers in 1998. In 1998, S won the Association for Computing Machinery’s
Software System Award, a highly prestigious award in the computer science field.
¹https://youtu.be/STihTnVSZnI
²http://cm.bell-labs.com/stat/doc/94.11.ps
History and Overview of R 6
“[W]e wanted users to be able to begin in an interactive environment, where they did not
consciously think of themselves as programming. Then as their needs became clearer and
their sophistication increased, they should be able to slide gradually into programming,
when the language and system aspects would become more important.”
The key part here was the transition from user to developer. They wanted to build a language that
could easily service both “people”. More technically, they needed to build language that would
be suitable for interactive data analysis (more command-line based) as well as for writing longer
programs (more traditional programming language-like).
3.4 Back to R
The R language came to use quite a bit after S had been developed. One key limitation of the S
language was that it was only available in a commericial package, S-PLUS. In 1991, R was created
by Ross Ihaka and Robert Gentleman in the Department of Statistics at the University of Auckland. In
1993 the first announcement of R was made to the public. Ross’s and Robert’s experience developing
R is documented in a 1996 paper in the Journal of Computational and Graphical Statistics:
Ross Ihaka and Robert Gentleman. R: A language for data analysis and graphics. Journal
of Computational and Graphical Statistics, 5(3):299–314, 1996
In 1995, Martin Mächler made an important contribution by convincing Ross and Robert to use the
GNU General Public License⁴ to make R free software. This was critical because it allowed for the
source code for the entire R system to be accessible to anyone who wanted to tinker with it (more
on free software later).
In 1996, a public mailing list was created (the R-help and R-devel lists) and in 1997 the R Core
Group was formed, containing some people associated with S and S-PLUS. Currently, the core group
controls the source code for R and is solely able to check in changes to the main R source tree. Finally,
in 2000 R version 1.0.0 was released to the public.
³http://www.stat.bell-labs.com/S/history.html
⁴http://www.gnu.org/licenses/gpl-2.0.html
History and Overview of R 7
2.0⁶.
According to the Free Software Foundation, with free software, you are granted the following four
freedoms⁷
• The freedom to run the program, for any purpose (freedom 0).
• The freedom to study how the program works, and adapt it to your needs (freedom 1). Access
to the source code is a precondition for this.
• The freedom to redistribute copies so you can help your neighbor (freedom 2).
• The freedom to improve the program, and release your improvements to the public, so that the
whole community benefits (freedom 3). Access to the source code is a precondition for this.
You can visit the Free Software Foundation’s web site⁸ to learn a lot more about free software. The
Free Software Foundation was founded by Richard Stallman in 1985 and Stallman’s personal web
site⁹ is an interesting read if you happen to have some spare time.
1. The “base” R system that you download from CRAN: Linux¹¹ Windows¹² Mac¹³ Source Code¹⁴
2. Everything else.
• The “base” R system contains, among other things, the base package which is required to run
R and contains the most fundamental functions.
• The other packages contained in the “base” system include utils, stats, datasets, graphics,
grDevices, grid, methods, tools, parallel, compiler, splines, tcltk, stats4.
• There are also “Recommended” packages: boot, class, cluster, codetools, foreign, KernS-
mooth, lattice, mgcv, nlme, rpart, survival, MASS, spatial, nnet, Matrix.
⁶http://www.gnu.org/licenses/gpl-2.0.html
⁷http://www.gnu.org/philosophy/free-sw.html
⁸http://www.fsf.org
⁹https://stallman.org
¹⁰http://cran.r-project.org
¹¹http://cran.r-project.org/bin/linux/
¹²http://cran.r-project.org/bin/windows/
¹³http://cran.r-project.org/bin/macosx/
¹⁴http://cran.r-project.org/src/base/R-3/R-3.1.3.tar.gz
History and Overview of R 9
When you download a fresh installation of R from CRAN, you get all of the above, which represents
a substantial amount of functionality. However, there are many other packages available:
• There are over 4000 packages on CRAN that have been developed by users and programmers
around the world.
• There are also many packages associated with the Bioconductor project¹⁵.
• People often make packages available on their personal websites; there is no reliable way to
keep track of how many packages are available in this fashion.
• There are a number of packages being developed on repositories like GitHub and BitBucket but
there is no reliable listing of all these packages.
3.8 Limitations of R
No programming language or statistical analysis system is perfect. R certainly has a number of
drawbacks. For starters, R is essentially based on almost 50 year old technology, going back to the
original S system developed at Bell Labs. There was originally little built in support for dynamic or
3-D graphics (but things have improved greatly since the “old days”).
Another commonly cited limitation of R is that objects must generally be stored in physical memory.
This is in part due to the scoping rules of the language, but R generally is more of a memory hog
than other statistical packages. However, there have been a number of advancements to deal with
this, both in the R core and also in a number of packages developed by contributors. Also, computing
power and capacity has continued to grow over time and amount of physical memory that can be
installed on even a consumer-level laptop is substantial. While we will likely never have enough
physical memory on a computer to handle the increasingly large datasets that are being generated,
the situation has gotten quite a bit easier over time.
At a higher level one “limitation” of R is that its functionality is based on consumer demand and
(voluntary) user contributions. If no one feels like implementing your favorite method, then it’s your
job to implement it (or you need to pay someone to do it). The capabilities of the R system generally
reflect the interests of the R user community. As the community has ballooned in size over the past
10 years, the capabilities have similarly increased. When I first started using R, there was very little
in the way of functionality for the physical sciences (physics, astronomy, etc.). However, now some
of those communities have adopted R and we are seeing more code being written for those kinds of
applications.
If you want to know my general views on the usefulness of R, you can see them here in the following
exchange on the R-help mailing list with Douglas Bates and Brian Ripley in June 2004:
Roger D. Peng: I don’t think anyone actually believes that R is designed to make everyone
happy. For me, R does about 99% of the things I need to do, but sadly, when I need to order
a pizza, I still have to pick up the telephone.
¹⁵http://bioconductor.org
History and Overview of R 10
Douglas Bates: There are several chains of pizzerias in the U.S. that provide for Internet-
based ordering (e.g. www.papajohnsonline.com) so, with the Internet modules in R, it’s
only a matter of time before you will have a pizza-ordering function available.
Brian D. Ripley: Indeed, the GraphApp toolkit (used for the RGui interface under R for
Windows, but Guido forgot to include it) provides one (for use in Sydney, Australia, we
presume as that is where the GraphApp author hails from). Alternatively, a Padovian has
no need of ordering pizzas with both home and neighbourhood restaurants ….
At this point in time, I think it would be fairly straightforward to build a pizza ordering R package
using something like the RCurl or httr packages. Any takers?
3.9 R Resources
Official Manuals
As far as getting started with R by reading stuff, there is of course this book. Also, available from
CRAN¹⁶ are
• An Introduction to R¹⁷
• R Data Import/Export¹⁸
• Writing R Extensions¹⁹: Discusses how to write and organize R packages
• R Installation and Administration²⁰: This is mostly for building R from the source code)
• R Internals²¹: This manual describes the low level structure of R and is primarily for developers
and R core members
• R Language Definition²²: This documents the R language and, again, is primarily for developers
• Venables & Ripley (2000). S Programming, Springer: This book is a little old but is still relevant
and accurate. Despite its title, this book is useful for R also.
• Murrell (2005). R Graphics, Chapman & Hall/CRC Press: Paul Murrell wrote and designed much
of the graphics system in R and this book essentially documents the underlying details. This
is not so much a “user-level” book as a developer-level book. But it is an important book for
anyone interested in designing new types of graphics or visualizations.
• Wickham (2014). Advanced R, Chapman & Hall/CRC Press: This book by Hadley Wickham
covers a number of areas including object-oriented programming, functional programming,
profiling and other advanced topics.
Other Resources
• Major technical publishers like Springer, Chapman & Hall/CRC have entire series of books
dedicated to using R in various applications. For example, Springer has a series of books called
Use R!.
• A longer list of books can be found on the CRAN web site²³.
²³http://www.r-project.org/doc/bib/R-books.html
4. Getting Started with R
4.1 Installation
The first thing you need to do to get started with R is to install it on your computer. R works on
pretty much every platform available, including the widely available Windows, Mac OS X, and Linux
systems. If you want to watch a step-by-step tutorial on how to install R for Mac or Windows, you
can watch these videos:
• Installing R on Windows¹
• Installing R on the Mac²
There is also an integrated development environment available for R that is built by RStudio. I really
like this IDE—it has a nice editor with syntax highlighting, there is an R object viewer, and there are
a number of other nice features that are integrated. You can see how to install RStudio here
• Installing RStudio³
¹http://youtu.be/Ohnk9hcxf9M
²https://youtu.be/uxuuWXU-7UQ
³https://youtu.be/bM7Sfz-LADM
⁴http://rstudio.com
⁵https://youtu.be/8xT3hmJQskU
⁶https://youtu.be/XBcvH1BpIBo
5. R Nuts and Bolts
5.1 Entering Input
Watch a video of this section¹
At the R prompt we type expressions. The <- symbol is the assignment operator.
> x <- 1
> print(x)
[1] 1
> x
[1] 1
> msg <- "hello"
The # character indicates a comment. Anything to the right of the # (including the # itself) is ignored.
This is the only comment character in R. Unlike some other languages, R does not support multi-line
comments or comment blocks.
5.2 Evaluation
When a complete expression is entered at the prompt, it is evaluated and the result of the evaluated
expression is returned. The result may be auto-printed.
The [1] shown in the output indicates that x is a vector and 5 is its first element.
Typically with interactive work, we do not explicitly print objects with the print function; it is much
easier to just auto-print them by typing the name of the object and hitting return/enter. However,
¹https://youtu.be/vGY5i_J2c-c?t=4m43s
R Nuts and Bolts 14
when writing scripts, functions, or longer programs, there is sometimes a need to explicitly print
objects because auto-printing does not work in those settings.
When an R vector is printed you will notice that an index for the vector is printed in square brackets
[] on the side. For example, see this integer sequence of length 20.
The numbers in the square brackets are not part of the vector itself, they are merely part of the
printed output.
With R, it’s important that one understand that there is a difference between the actual R object
and the manner in which that R object is printed to the console. Often, the printed output may have
additional bells and whistles to make the output more friendly to the users. However, these bells and
whistles are not inherently part of the object.
Note that the : operator is used to create integer sequences.
5.3 R Objects
Watch a video of this section²
R has five basic or “atomic” classes of objects:
• character
• numeric (real numbers)
• integer
• complex
• logical (True/False)
The most basic type of R object is a vector. Empty vectors can be created with the vector() function.
There is really only one rule about vectors in R, which is that A vector can only contain objects
of the same class.
But of course, like any good rule, there is an exception, which is a list, which we will get to a bit later.
A list is represented as a vector but can contain objects of different classes. Indeed, that’s usually
why we use them.
There is also a class for “raw” objects, but they are not commonly used directly in data analysis and
I won’t cover them here.
²https://youtu.be/vGY5i_J2c-c
R Nuts and Bolts 15
5.4 Numbers
Numbers in R are generally treated as numeric objects (i.e. double precision real numbers). This
means that even if you see a number like “1” or “2” in R, which you might think of as integers, they
are likely represented behind the scenes as numeric objects (so something like “1.00” or “2.00”). This
isn’t important most of the time…except when it is.
If you explicitly want an integer, you need to specify the L suffix. So entering 1 in R gives you a
numeric object; entering 1L explicitly gives you an integer object.
There is also a special number Inf which represents infinity. This allows us to represent entities like
1 / 0. This way, Inf can be used in ordinary calculations; e.g. 1 / Inf is 0.
The value NaN represents an undefined value (“not a number”); e.g. 0 / 0; NaN can also be thought of
as a missing value (more on that later)
5.5 Attributes
R objects can have attributes, which are like metadata for the object. These metadata can be very
useful in that they help to describe the object. For example, column names on a data frame help to
tell us what data are contained in each of the columns. Some examples of R object attributes are
• names, dimnames
• dimensions (e.g. matrices, arrays)
• class (e.g. integer, numeric)
• length
• other user-defined attributes/metadata
Attributes of an object (if any) can be accessed using the attributes() function. Not all R objects
contain attributes, in which case the attributes() function returns NULL.
³https://youtu.be/w8_XdYI3reU
R Nuts and Bolts 16
Note that in the above example, T and F are short-hand ways to specify TRUE and FALSE. However,
in general one should try to use the explicit TRUE and FALSE values when indicating logical values.
The T and F values are primarily there for when you’re feeling lazy.
You can also use the vector() function to initialize vectors.
In each case above, we are mixing objects of two different classes in a vector. But remember that
the only rule about vectors says this is not allowed. When different objects are mixed in a vector,
coercion occurs so that every element in the vector is of the same class.
In the example above, we see the effect of implicit coercion. What R tries to do is find a way to
represent all of the objects in the vector in a reasonable fashion. Sometimes this does exactly what
you want and…sometimes not. For example, combining a numeric object with a character object
will create a character vector, because numbers can usually be easily represented as strings.
Sometimes, R can’t figure out how to coerce an object and this can result in NAs being produced.
When nonsensical coercion takes place, you will usually get a warning from R.
5.9 Matrices
Matrices are vectors with a dimension attribute. The dimension attribute is itself an integer vector
of length 2 (number of rows, number of columns)
Matrices are constructed column-wise, so entries can be thought of starting in the “upper left” corner
and running down the columns.
R Nuts and Bolts 18
Matrices can also be created directly from vectors by adding a dimension attribute.
Matrices can be created by column-binding or row-binding with the cbind() and rbind() functions.
5.10 Lists
Lists are a special type of vector that can contain elements of different classes. Lists are a very
important data type in R and you should get to know them well. Lists, in combination with the
various “apply” functions discussed later, make for a powerful combination.
Lists can be explicitly created using the list() function, which takes an arbitrary number of
arguments.
R Nuts and Bolts 19
[[2]]
[1] "a"
[[3]]
[1] TRUE
[[4]]
[1] 1+4i
We can also create an empty list of a prespecified length with the vector() function
[[2]]
NULL
[[3]]
NULL
[[4]]
NULL
[[5]]
NULL
5.11 Factors
Watch a video of this section⁴
Factors are used to represent categorical data and can be unordered or ordered. One can think of
a factor as an integer vector where each integer has a label. Factors are important in statistical
modeling and are treated specially by modelling functions like lm() and glm().
Using factors with labels is better than using integers because factors are self-describing. Having a
variable that has values “Male” and “Female” is better than a variable that has values 1 and 2.
Factor objects can be created with the factor() function.
⁴https://youtu.be/NuY6jY4qE7I
R Nuts and Bolts 20
Often factors will be automatically created for you when you read a dataset in using a function like
read.table(). Those functions often default to creating factors when they encounter data that look
like characters or strings.
The order of the levels of a factor can be set using the levels argument to factor(). This can be
important in linear modelling because the first level is used as the baseline level.
⁵https://github.com/hadley/dplyr
Other documents randomly have
different content
The vessels also had a parodus placed outside the vessel and
extending the whole length of the sides above the oars. The
contrivance was probably copied from the Egyptians, who introduced
it to enable the warriors to fight at close quarters when drawing
alongside an enemy, or to run to either end of the ship as occasion
might require without impeding, or being impeded by, the rowers.
GREEK BIREME.
From a Vase in the British Museum, found at Vulci.
GREEK WAR GALLEYS.
From a Vase in the British Museum found at Vulci.
Cancelli, or shields of basket work, were placed along the sides of
the ships at such a height that the heads of those on board are just
visible. The cancelli bore a striking resemblance to the circular
basket-work boats still to be found on the upper Euphrates; this
supports the supposition that the cancelli may have been used for
other purposes, particularly if they were made comparatively
watertight, as the function of a shield was not only to protect a
warrior in battle, but to help to keep him dry when on shipboard by
being disposed along the sides to prevent the spray from entering
the ships. A forecastle was constructed upon these ships, and upon
each forecastle a look-out man was stationed; and when these
structures came to be built of larger dimensions they served to
accommodate a number of fighting men who, from their superior
position, could throw their missiles with greater effect. The
forecastle had the further advantage of serving as a stronghold in
the event of an attempt being made to capture the ship by boarding
it.
Following the Phœnicians, the Greeks are thought to have begun to
build their own warships about 700 b.c., perhaps earlier, but it was
about that time that the first three-banked warship was launched at
Corinth. The three-banked ships were for many years the largest in
existence. During the fourth century b.c. shipbuilding was practised
extensively, four-banked ships being built at Chalcedon, five-banked
at Salamis, and six-banked ships at Syracuse. Ships of ten banks,
according to Pliny, were ordered by Alexander the Great, and about
300 b.c. ships having twelve banks are said to have been built for
Ptolemy, and fifteen-banked ships for Demetrios, for a battle near
Cyprus.
Ptolemy Philopater, who ruled in Egypt from 222 to 204 b.c., is
alleged to have had a forty-banked ship of a length of 280 cubits or,
reckoning the cubit at 18 inches, of 420 feet, and a beam of 57 feet.
While increasing the size and number of oars, it would, nevertheless,
be impossible to augment to any appreciable extent the speed at
which these ships could be rowed, and the more unwieldy would
they become, and the more difficult would it be to keep steering way
upon them. Again, the assertions of the historians are so
contradictory that it is a thankless task to attempt to reconcile all
their stories, especially as they depended much upon hearsay for
their information. For that reason, therefore, a great deal that has
been recorded as to the early ships and their numerous banks of
oars is not to be accepted without careful inquiry and verification.
It has never been established beyond question what is meant by
banks of oars, or whether the Greek text has been interpreted
correctly when it is taken to express forty superimposed banks of
oars. From constructional reasons it may be assumed that a ship
having forty superimposed banks of oars never existed, and it is very
doubtful whether ships having more than a fourth of that number of
banks passed beyond the imaginations of their inventors. In any
case they were soon dispensed with, and in course of time it was
found that the best results were obtained with galleys having two or
three banks of oars.
It is not definitely known how the rowers were disposed in the ships
of anything over seven or eight banks. If any vessels had forty banks
of oars, the upper rows must have been of an absolutely unwieldy
length. Assuming the oars to have been weighted with lead so that
the inborne and outborne portions were equally balanced, they must
nevertheless have been exceedingly difficult to row even by a
number of men, and it was impossible for any rowers to have moved
these great oars at the same speed as the men at the lower banks
moved their lighter and shorter ones. That some such difficulty was
experienced, even in biremes and triremes, is shown by the
arrangement of the oars, whereby all in a bank were not of equal
length, but were graded so that those nearer the ends of the banks
were longer in order that all the blades might enter the water in a
straight line. Each row above must have had its own line in the
water a little farther away from the side of the ship than the row
beneath it, or the blades would have interfered with each other and
the rowers thrown into hopeless confusion. The tremendous amount
of lead that would have to be carried to counterbalance the
outborne portions of several hundred oars would add materially to
the dead weight to be propelled, and, much of it being placed high
above the water, the stability of the vessel would be lessened.
The Athenians used leather or skin aprons or covers over the oar
holes to prevent the water entering, the oar passing through a hole
in the leather, and the apron was bound to the oar in such a way as
to be watertight. This contrivance was widely adopted later. The oar
ports were constructed between the ribs, but the oars instead of
being rowed against the ribs were pulled against thongs fastened to
the next rib, thus minimising the strain upon the ship’s structure and
preventing the oars being lost overboard. One man one oar was
apparently the general rule at that time.
In his most painstaking study of “Ancient Ships” Mr. Cecil Torr has
gone very closely into the subject of the oar equipment of the
galleys. An Athenian three-banked ship would carry two hundred
oars, of which thirty were worked from the upper decking, sixty-two
on the upper bank, and fifty-four to each of the lower. The earliest
two-banked ships had eighteen rowers. An Athenian four-banked
ship might carry two hundred and sixty-six oars. The Roman and
Carthaginian five-banked ships in use about 256 b.c. had three
hundred rowers besides the combatants. The statement is made by
an early historian that in 280 b.c. the Heraclean fleet on the Black
Sea included an eight-banked ship with a hundred rowers on each
file, or one thousand six hundred rowers in all. As usually the
fighting men carried exceeded the rowers in number, the ship must
have had close upon three thousand five hundred men aboard.
Warships of all the early Eastern nations were strengthened by
cables passed longitudinally round them in order to keep the timbers
in place and prevent them from being started under the strain
occasioned by the shock of ramming. Egyptian ships of about 1200
b.c. had cables stretched from stem to stern and passing over the
top of the mast and other posts, but this contrivance was to prevent
the vessel from drooping at the ends, a weakness known as
“hogging.” The shock to the ramming vessel was scarcely less severe
than that to the vessel receiving the blow. To take up the strain and
add to the power of the blow the bows were strengthened by means
of waling pieces which supported the ram proper. The Greek ships
were built with the keel, the stempost, and the lower pair of waling
pieces converging to hold the ram, while higher up the stem was a
smaller ram which in its turn was buttressed by another pair of
waling planks. The catheads, or beams projecting from the bows on
either side by which the anchors were raised, were so placed on a
level with the gangway and gunwale that they would sweep the
upper works of an enemy’s ship and smash its gangway and hurl
into the sea or the hold all the fighting men upon it. Ships of more
than three banks are believed to have carried another ram level with
the catheads, and to have had a ram for every pair of additional
waling beams. The ram heads were generally of bronze and weighed
170 lb. or more.
“AN ANCIENT BIREME, FROM BASIUS, HAVING ONE TIER OF OARS ONLY.”
Our website is not just a platform for buying books, but a bridge
connecting readers to the timeless values of culture and wisdom. With
an elegant, user-friendly interface and an intelligent search system,
we are committed to providing a quick and convenient shopping
experience. Additionally, our special promotions and home delivery
services ensure that you save time and fully enjoy the joy of reading.
textbookfull.com