100% found this document useful (1 vote)
46 views

Machine Learning with Python Cookbook, 2nd Edition (First Early Release) Kyle Gallatin instant download

The document is an early release of the 'Machine Learning with Python Cookbook, 2nd Edition' by Kyle Gallatin, providing practical solutions from preprocessing to deep learning. It includes chapters on working with NumPy, covering essential operations for creating vectors, matrices, and sparse matrices, as well as selecting elements and applying functions. The book aims to equip readers with foundational tools for machine learning workflows using Python.

Uploaded by

kimpeesherna66
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
100% found this document useful (1 vote)
46 views

Machine Learning with Python Cookbook, 2nd Edition (First Early Release) Kyle Gallatin instant download

The document is an early release of the 'Machine Learning with Python Cookbook, 2nd Edition' by Kyle Gallatin, providing practical solutions from preprocessing to deep learning. It includes chapters on working with NumPy, covering essential operations for creating vectors, matrices, and sparse matrices, as well as selecting elements and applying functions. The book aims to equip readers with foundational tools for machine learning workflows using Python.

Uploaded by

kimpeesherna66
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 54

Machine Learning with Python Cookbook, 2nd

Edition (First Early Release) Kyle Gallatin pdf


download

https://ebookmeta.com/product/machine-learning-with-python-
cookbook-2nd-edition-first-early-release-kyle-gallatin/

Download more ebook from https://ebookmeta.com


We believe these products will be a great fit for you. Click
the link to download now, or visit ebookmeta.com
to discover even more!

Machine Learning with Python Cookbook, 2nd Edition Kyle


Gallatin

https://ebookmeta.com/product/machine-learning-with-python-
cookbook-2nd-edition-kyle-gallatin/

Machine Learning with Python Cookbook 2nd Edition Chris


Albon

https://ebookmeta.com/product/machine-learning-with-python-
cookbook-2nd-edition-chris-albon/

Machine Learning with Python Cookbook Practical


Solutions from Preprocessing to Deep Learning 2nd Ed
Release 5 2nd Edition Chris Albon

https://ebookmeta.com/product/machine-learning-with-python-
cookbook-practical-solutions-from-preprocessing-to-deep-
learning-2nd-ed-release-5-2nd-edition-chris-albon/

The White Educators’ Guide to Equity Jeramy Wallace

https://ebookmeta.com/product/the-white-educators-guide-to-
equity-jeramy-wallace/
Lawyer Games After Midnight in the Garden of Good and
Evil 2nd Edition Dep Kirkland

https://ebookmeta.com/product/lawyer-games-after-midnight-in-the-
garden-of-good-and-evil-2nd-edition-dep-kirkland/

Artificial Intelligence A Modern Approach 3rd edition


Stuart Russell Peter Norvig

https://ebookmeta.com/product/artificial-intelligence-a-modern-
approach-3rd-edition-stuart-russell-peter-norvig/

Body and Soul in Hellenistic Philosophy 1st Edition


Brad Inwood

https://ebookmeta.com/product/body-and-soul-in-hellenistic-
philosophy-1st-edition-brad-inwood/

Gravity Falls Don t Color This Book 1st Edition Emmy


Cicierega Alex Hirsch

https://ebookmeta.com/product/gravity-falls-don-t-color-this-
book-1st-edition-emmy-cicierega-alex-hirsch/

Folk Tales of Bengal 1st Edition Lal Behari Day

https://ebookmeta.com/product/folk-tales-of-bengal-1st-edition-
lal-behari-day/
Annual Review of Gerontology and Geriatrics Volume 39
2019 154th Edition Roland J Thorpe Jr Phd

https://ebookmeta.com/product/annual-review-of-gerontology-and-
geriatrics-volume-39-2019-154th-edition-roland-j-thorpe-jr-phd/
Machine Learning with
Python Cookbook
SECOND EDITION
Practical Solutions from Preprocessing to Deep Learning

With Early Release ebooks, you get books in their earliest form—the author’s
raw and unedited content as they write—so you can take advantage of these
technologies long before the official release of these titles.

Kyle Gallatin and Chris Albon


Machine Learning with Python Cookbook
by Kyle Gallatin and Chris Albon
Copyright © 2023 Kyle Gallatin. All rights reserved.
Printed in the United States of America.
Published by O’Reilly Media, Inc., 1005 Gravenstein Highway North,
Sebastopol, CA 95472.
O’Reilly books may be purchased for educational, business, or sales
promotional use. Online editions are also available for most titles
(http://oreilly.com). For more information, contact our
corporate/institutional sales department: 800-998-9938 or
[email protected].
Acquisitions Editor: Nicole Butterfield
Development Editor Jeff Bleiel
Production Editor: Christopher Faucher
Interior Designer: David Futato
Cover Designer: Karen Montgomery
April 2018: First Edition
October 2023: Second Edition
Revision History for the Early Release
2022-08-24: First Release
See http://oreilly.com/catalog/errata.csp?isbn=9781098135720 for
release details.
The O’Reilly logo is a registered trademark of O’Reilly Media, Inc.
Machine Learning with Python Cookbook, the cover image, and
related trade dress are trademarks of O’Reilly Media, Inc.
The views expressed in this work are those of the authors and do
not represent the publisher’s views. While the publisher and the
authors have used good faith efforts to ensure that the information
and instructions contained in this work are accurate, the publisher
and the authors disclaim all responsibility for errors or omissions,
including without limitation responsibility for damages resulting from
the use of or reliance on this work. Use of the information and
instructions contained in this work is at your own risk. If any code
samples or other technology this work contains or describes is
subject to open source licenses or the intellectual property rights of
others, it is your responsibility to ensure that your use thereof
complies with such licenses and/or rights.
978-1-098-13566-9
Chapter 1. Working with
Vectors, Matrices and Arrays
in NumPy

A NOTE FOR EARLY RELEASE READERS


With Early Release ebooks, you get books in their earliest form—the authors’
raw and unedited content as they write—so you can take advantage of these
technologies long before the official release of these titles.
This will be the 1st chapter of the final book.
If you have comments about how we might improve the content and/or
examples in this book, or if you notice missing material within this chapter,
please reach out to the authors at [email protected].

1.0 Introduction
NumPy is a foundational tool of the Python machine learning stack.
NumPy allows for efficient operations on the data structures often
used in machine learning: vectors, matrices, and tensors. While
NumPy is not the focus of this book, it will show up frequently
throughout the following chapters. This chapter covers the most
common NumPy operations we are likely to run into while working
on machine learning workflows.

1.1 Creating a Vector

Problem
You need to create a vector.
Solution
Use NumPy to create a one-dimensional array:

# Load library
import numpy as np

# Create a vector as a row


vector_row = np.array([1, 2, 3])

# Create a vector as a column


vector_column = np.array([[1],
[2],
[3]])

Discussion
NumPy’s main data structure is the multidimensional array. A vector
is just an array with a single dimension. In order to create a vector,
we simply create a one-dimensional array. Just like vectors, these
arrays can be represented horizontally (i.e., rows) or vertically (i.e.,
columns).

See Also
Vectors, Math Is Fun
Euclidean vector, Wikipedia

1.2 Creating a Matrix

Problem
You need to create a matrix.

Solution
Use NumPy to create a two-dimensional array:
# Load library
import numpy as np

# Create a matrix
matrix = np.array([[1, 2],
[1, 2],
[1, 2]])

Discussion
To create a matrix we can use a NumPy two-dimensional array. In
our solution, the matrix contains three rows and two columns (a
column of 1s and a column of 2s).
NumPy actually has a dedicated matrix data structure:

matrix_object = np.mat([[1, 2],


[1, 2],
[1, 2]])

matrix([[1, 2],
[1, 2],
[1, 2]])

However, the matrix data structure is not recommended for two


reasons. First, arrays are the de facto standard data structure of
NumPy. Second, the vast majority of NumPy operations return
arrays, not matrix objects.

See Also
Matrix, Wikipedia
Matrix, Wolfram MathWorld
1.3 Creating a Sparse Matrix

Problem
Given data with very few nonzero values, you want to efficiently
represent it.

Solution
Create a sparse matrix:

# Load libraries
import numpy as np
from scipy import sparse

# Create a matrix
matrix = np.array([[0, 0],
[0, 1],
[3, 0]])

# Create compressed sparse row (CSR) matrix


matrix_sparse = sparse.csr_matrix(matrix)

Discussion
A frequent situation in machine learning is having a huge amount of
data; however, most of the elements in the data are zeros. For
example, imagine a matrix where the columns are every movie on
Netflix, the rows are every Netflix user, and the values are how many
times a user has watched that particular movie. This matrix would
have tens of thousands of columns and millions of rows! However,
since most users do not watch most movies, the vast majority of
elements would be zero.
A sparse matrix is a matrix in which most elements are 0. Sparse
matrices only store nonzero elements and assume all other values
will be zero, leading to significant computational savings. In our
solution, we created a NumPy array with two nonzero values, then
converted it into a sparse matrix. If we view the sparse matrix we
can see that only the nonzero values are stored:

# View sparse matrix


print(matrix_sparse)

(1, 1) 1
(2, 0) 3

There are a number of types of sparse matrices. However, in


compressed sparse row (CSR) matrices, (1, 1) and (2, 0)
represent the (zero-indexed) indices of the non-zero values 1 and 3,
respectively. For example, the element 1 is in the second row and
second column. We can see the advantage of sparse matrices if we
create a much larger matrix with many more zero elements and then
compare this larger matrix with our original sparse matrix:

# Create larger matrix


matrix_large = np.array([[0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[0, 1, 0, 0, 0, 0, 0, 0, 0, 0],
[3, 0, 0, 0, 0, 0, 0, 0, 0, 0]])

# Create compressed sparse row (CSR) matrix


matrix_large_sparse = sparse.csr_matrix(matrix_large)

# View original sparse matrix


print(matrix_sparse)

(1, 1) 1
(2, 0) 3

# View larger sparse matrix


print(matrix_large_sparse)

(1, 1) 1
(2, 0) 3
As we can see, despite the fact that we added many more zero
elements in the larger matrix, its sparse representation is exactly the
same as our original sparse matrix. That is, the addition of zero
elements did not change the size of the sparse matrix.
As mentioned, there are many different types of sparse matrices,
such as compressed sparse column, list of lists, and dictionary of
keys. While an explanation of the different types and their
implications is outside the scope of this book, it is worth noting that
while there is no “best” sparse matrix type, there are meaningful
differences between them and we should be conscious about why
we are choosing one type over another.

See Also
Sparse matrices, SciPy documentation
101 Ways to Store a Sparse Matrix

1.4 Pre-allocating Numpy Arrays

Problem
You need to pre-allocate arrays of a given size with some value.

Solution
NumPy has functions for generating vectors and matrices of any size
using 0s, 1s, or values of your choice.

# Load library
import numpy as np

# Generate a vector of shape (1,5) containing all zeros


vector = np.zeros(shape=5)
# View the vector
print(vector)

array([0., 0., 0., 0., 0.])

# Generate a matrix of shape (3,3) containing all ones


matrix = np.full(shape=(3,3), 1)

# View the vector


print(matrix)

array([[1., 1., 1.],


[1., 1., 1.],
[1., 1., 1.]])

Discussion
Generating arrays prefilled with data is useful for a number of
purposes, such as making code more performant or having synthetic
data to test algorithms with. In many programming languages, pre-
allocating an array of default values (such as 0s) is considered
common practice.

1.5 Selecting Elements

Problem
You need to select one or more elements in a vector or matrix.

Solution
NumPy’s arrays make it easy to select elements in vectors or
matrices:

# Load library
import numpy as np

# Create row vector


vector = np.array([1, 2, 3, 4, 5, 6])

# Create matrix
matrix = np.array([[1, 2, 3],
[4, 5, 6],
[7, 8, 9]])

# Select third element of vector


vector[2]

# Select second row, second column


matrix[1,1]

Discussion
Like most things in Python, NumPy arrays are zero-indexed, meaning
that the index of the first element is 0, not 1. With that caveat,
NumPy offers a wide variety of methods for selecting (i.e., indexing
and slicing) elements or groups of elements in arrays:

# Select all elements of a vector


vector[:]

array([1, 2, 3, 4, 5, 6])

# Select everything up to and including the third element


vector[:3]

array([1, 2, 3])

# Select everything after the third element


vector[3:]

array([4, 5, 6])
# Select the last element
vector[-1]

# Reverse the vector


vector[::-1]

array([6, 5, 4, 3, 2, 1])

# Select the first two rows and all columns of a matrix


matrix[:2,:]

array([[1, 2, 3],
[4, 5, 6]])

# Select all rows and the second column


matrix[:,1:2]

array([[2],
[5],
[8]])

1.6 Describing a Matrix

Problem
You want to describe the shape, size, and dimensions of the matrix.

Solution
Use the shape, size, and ndim attributes of a NumPy object:

# Load library
import numpy as np

# Create matrix
matrix = np.array([[1, 2, 3, 4],
[5, 6, 7, 8],
[9, 10, 11, 12]])

# View number of rows and columns


matrix.shape

(3, 4)

# View number of elements (rows * columns)


matrix.size

12

# View number of dimensions


matrix.ndim

Discussion
This might seem basic (and it is); however, time and again it will be
valuable to check the shape and size of an array both for further
calculations and simply as a gut check after some operation.

1.7 Applying Functions Over Each Element

Problem
You want to apply some function to all elements in an array.

Solution
Use NumPy’s vectorize method:

# Load library
import numpy as np

# Create matrix
matrix = np.array([[1, 2, 3],
[4, 5, 6],
[7, 8, 9]])

# Create function that adds 100 to something


add_100 = lambda i: i + 100

# Create vectorized function


vectorized_add_100 = np.vectorize(add_100)

# Apply function to all elements in matrix


vectorized_add_100(matrix)

array([[101, 102, 103],


[104, 105, 106],
[107, 108, 109]])

Discussion
NumPy’s vectorize class converts a function into a function that
can apply to all elements in an array or slice of an array. It’s worth
noting that vectorize is essentially a for loop over the elements
and does not increase performance. Furthermore, NumPy arrays
allow us to perform operations between arrays even if their
dimensions are not the same (a process called broadcasting). For
example, we can create a much simpler version of our solution using
broadcasting:

# Add 100 to all elements


matrix + 100

array([[101, 102, 103],


[104, 105, 106],
[107, 108, 109]])
Another Random Scribd Document
with Unrelated Content
ownership. The main points of his plan are: to expand the present
Interstate commerce commission by the creation of eight district
commissions; to grant the railroads representation on these
commissions, and to have the government guarantee interest and
dividends. Contents: Our transportation problem; The sins of
regulation; Sins of the railroads; A constructive railroad policy;
Government ownership of railroads.
“Mr Wymond’s proposal is an interesting one, but does not come
with the force that might possibly have marked it if his discussion
had been of a broader character. The discriminating reader is left
in doubt as to the extent to which he can rely upon the author’s
guidance.” E. R. Dewsnup
– Am Econ R 7:856 D ‘17 580w
+

Ann Am Acad 73:235 S ‘17 40w

Cleveland p112 S ‘17 30w

Electric Railway Journal p674 Ap 7 ‘17


“Mr Wymond is a good spokesman for the railroads, assuming,
what seems to be true, that he represents them with his solution
of the troublesome plan of railway regulation—much in the same
unofficial way that he represented them with his earlier book,
‘Railroad valuation and rates.’ Mr Wymond’s candid and quiet
statements will gain a wider hearing, in spite of his obvious
leanings, than the once familiar broadside loaded with bombast
and exaggeration.”
+ Engin N 77:437 Mr 15 ‘17 200w

Ind 91:31 Jl 7 ‘17 80w


Pittsburgh 22:470 My ‘17 90w
Railway Review p539 Ap 14 ‘17
R of Rs 56:326 S ‘17 160w
“It is not likely that his plan will be accepted by the managers. But
it cannot be called visionary, for it merely provides a possible
synthesis of forces existing in society and applies principles that
are already accepted in theory. One may make this
acknowledgment without yielding full assent to this particular plan
of Mr Wymond’s, which, however, is worthy of consideration. The
question of railway credit and the desirability of doing away with
the anomalies of the present system of regulation demand
constructive thinking.”
+ Springf’d Republican p6 F 23 ‘17 350w
X

“X.,” pseud. War poems. *75c Doubleday 821 17-12509


A publisher’s note says that all that is known of “X” is that he is an
Englishman who has given two sons to the war. Among the poems
are: A song of pride for England; Kitchener; Dying for your
country; A chant of affection; To the Kaiser; Joffre; Towards the
reckoning; Verdun; Ireland; and If, the last “with apologies to Mr
Kipling.”
“Vivid, martial verse, satirical, humorous, tragic. Voices in
particular the feelings of the stay-at-home.”
+ A L A Bkl 14:16 O ‘17
“‘War poems’ by ‘X’ have stirred England more than any poems
since Rupert Brooke’s last sonnets. ... ‘X’ is said to be T. W. H.
Crosland, a London journalist of noted gifts, a man who has edited
a number of famous literary journals. ... Whoever ‘X’ may be does
not matter so much; certainly these poems might honorably have
come from any of the greatest hands writing English today. He is
equipped with tools of extraordinary edge and temper. The savage
and relentless power of the satiric and invective verses is no more
remarkable than the noble and mellow beauty of the elegiac
sonnets.” C. D. M.
+ Boston Transcript p6 Je 2 ‘17 1200w

+ Lit D 54:1178 Ap 21 ‘17 330w

N Y Br Lib News 4:78 My ‘17 20w


Pittsburgh 22:507 Je ‘17 20w

+ Spec 118:76 Ja 20 ‘17 70w


Y

YARD, ROBERT STERLING. Top of the continent. il *75c (2c)


Scribner 711 17-25279
In his introduction to this “story of a cheerful journey through our
national parks,” Franklin K. Lane speaks of the national parks as
“one part of our national system of education.” Only a very few
boys and girls can avail themselves of this educational opportunity
at first hand, and the next best thing will be to read about these
wonderlands in books that will fire the imagination and inspire the
ambition to visit them “some day.” Happily Mr Yard has provided
just such a book. Margaret and Jack, who travel thru the parks in
company with a nice mother, two jolly young uncles and a
charming young aunt, are two lively and human youngsters. The
story is entertaining and the informative parts of the book are
made interesting. The pictures are from photographs and from
drawings by Maginel Wright Enright.
+ A L A Bkl 14:138 Ja ‘18
“Makes one realize our country’s resources. The illustrations are
profuse and excellent.”
+ Ind 92:448 D 1 ‘17 30w
“The volume ought to prove both informative and interesting to all
who have a particle of curiosity about or pride in their own
country. For those who contemplate a trip to any one or all of the
places described it will serve as an excellent guide book. For young
people there could be no better gift volume.”
+ N Y Times 22:482 N 18 ‘17 430w
“A capital book for young people.”
+ Outlook 117:100 S 19 ‘17 50w
“Delightful little book.”
+ Springf’d Republican p13 D 16 ‘17 150w

YEATS, JOHN BUTLER. Passages from the letters of John Butler


Yeats; selected by Ezra Pound. Cuala press, Churchtown,
Dundrum, Ireland 17-23318
“Mr Pound tells us that these passages were chosen from letters
written to Mr W. B. Yeats by his father between 1911 and 1916. Mr
J. B. Yeats is a painter, but he writes mainly about life and
literature, or art in general.” (The Times [London] Lit Sup) “Mr
William Butler Yeats is a silent factor in the book except for his
suggestion that his father, living in New York, should write to him
in Europe letters of subject continuity with the idea of later
publication.” (Boston Transcript) The volume is printed by Elizabeth
Corbet Yeats, daughter of the writer of the letters.
“The typography of this beautiful little book is almost worthy of the
Doves press. ... This collection of letters almost amounts to a body
of criticism and social theory. So many things are touched on, and
so well, that the book was worth an index.”
+ Ath p413 Ag ‘17 270w
“Typographically it is all that one might desire for a text entirely
concerned with beauty, and Miss Yeats has added one more
volume to her list of books in which color, paper, type and spacing
unite in fine harmony.” K. B.
+ Boston Transcript p6 Je 13 ‘17 1350w
“The youthfully venerable Mr Yeats ... bends a kindly but rebuking
gaze upon what seems to him the emptiness of our American
civilization or the deficiencies of those who are neither Irish nor
French; his admonishing finger points straight at the delirious
vacuity of our national life. ... How shrewd, how charming, how
eloquent, how wise in the intuition of a subtle poet and dreamer is
the talk of this Irish patriarch at its best.” Lawrence Gilman
+ No Am 206:472 S ‘17 1700w

“Yet in spite of his personal comment, the letters are kindly-
mannered and truly critical. Contrasts between types of character
of different nationalities and comparisons between Englishmen of
letters and American writers make excellent reading.”
+ R of Rs 57:217 F ‘18 330w
“He writes like one whose business is contemplation and who is
utterly content with it. He lives intensely still, but has passed
beyond the struggle for life; he is personal, but without personal
aims or irritations or vanities; his philosophy is his own, but it is
completely a philosophy, not a cry of individual pain or pleasure.
Sometimes there is a little malice, but it is the delicate malice of
the spirit, directed not against people but against tendencies.”
+ The Times [London] Lit Sup p271 Je 7 ‘17
1350w

YODER, JACOB HERBERT, and WHAREN, GEORGE BURR.


Locomotive valves and valve gears; with a special treatise on
valve setting. il *$3 Van Nostrand 621.184 17-21992
“This book has been prepared to meet a general desire among
railroad shop men to acquaint themselves thoroughly with the
valves and valve gears applied to the modern locomotive and to
master the principles of valve motion as a preparation to valve
setting. ... The material has been compiled largely from notes used
in the instruction of apprentices of the Pennsylvania railroad
company, and from knowledge gained by the authors in practical
shop experience.” (Preface) Contents: Locomotive valves and valve
gears; The Stephenson valve gear; The Walschaert valve gear;
Baker locomotive valve gear [and others]; Effects of altering the
valve and its events; Locomotive valve setting; Summary. There
are 274 illustrations, including figures, diagrams, etc.
“Practical, simply written, and provided with excellent diagrams,
this admirable work should find a wide use not only among
shopmen, but among enginemen, firemen, draughtsmen, and
designing engineers as well.”
+ N Y P L New Tech Bks p9 O ‘17 80w

Pittsburgh 22:757 N ‘17 40w

YOHANNAN, ABRAHAM. Death of a nation; or, The ever


persecuted Nestorians or Assyrian Christians. il *$2 (9c) Putnam
281 16-23129
“To meet the wishes of my friends, I have consented to give the
history of the persecutions of the Nestorian church in general, and
to make public some further information on the sufferings and
massacres to which, as the result of this terrible war, they are
subjected to-day,” says the author. Part 1 of his book is devoted to
a historical survey of the Christian church in Assyria from its
founding in the first century to the present day. Part 2 describes
the sufferings of his people as a result of the present war.
Bib World 49:187 Mr ‘17 90w

Ind 88:552 D 25 ‘16 60w

R of Rs 55:108 Ja ‘17 20w

YOUNG, GEORGE. Portugal old and young. il *$2.25 Oxford 946.9


(Eng ed 17-24318)
“Mr Young, sometime first secretary at Lisbon, has in seven essays
presented an account of Portugal, beginning with Portugal and the
war, following with four historical chapters, and concluding with
Young Portugal and Portugal and the peace. ... Several translations
are reproduced here from his ‘Portugal, an anthology,’ published
last year. ... In the frontispiece is reproduced Nuno Gonsalvez’s
altar-piece of San Vicente.”—Ath
+ Ath p475 S ‘17 130w
“Now and then as we read we are tempted to wish that our author
had written as a traveller and not as an historian. At times we find
his political history rather dull, and indeed it would be nearly
impossible in a short space to render the kaleidoscopic changes of
political fortune in modern Portugal other than confusing; but his
descriptions of the country, his criticism of its literature, and his
translations of its songs are charming.”
+ Spec 119:330 S 29 ‘17 1100w

“A well-proportioned survey of ‘Portugal, old and young,’
compressed into a short space, but without any obvious sense of
compression. ... In what will be to many readers the most
interesting part of the book, he discusses, under ‘Empire and
eclipse,’ how it was that the strength of Portugal was sapped
instead of being built up by empire. ... Mr George Young has
already done much by his ‘Portugal: an anthology,’ published last
year, to interest English readers in that country.”
+ The Times [London] Lit Sup p371 Ag 2 ‘17
220w
“It is not a ‘history’ in the conventional sense, but an essay on the
whole development of the life of the Portuguese people, illustrated
by copious quotations from their literature and by vivid sketches of
the country, of its art and architecture, and of the people
themselves. Very interesting, especially, is the comparison of
Portugal with Ireland, the basis of the population of the two
countries being compounded of the same racial elements, Iberian
and Celtic.”
* The Times [London] Lit Sup p399 Ag 23
‘17 2250w

YOUNG, JEREMIAH SIMEON. State and government. *50c (1c)


McClurg 350 17-8359
“An attempt to clarify the popular understanding of the principles
of government, as developed in our own national history. ... This
book is presented as one of the volumes of the National social
science series, edited by President McVey, of the University of
North Dakota.” (R of Rs) “It is to be supplemented at an early date
with another on social and economic legislation, which will
emphasize the fundamental principles of the state’s police power.”
(Author’s preface) There is a one page bibliography.
“On the whole Dr Young has performed his task as capably as an
enterprise of this nature could be performed, but the demands of
brevity have been so rigorous that in many passages the virtue of
clearness has had to be jettisoned.”
+ Am Pol Sci R 11:789 N ‘17 190w

R of Rs 56:326 S ‘17 50w

St Louis 15:357 O ‘17 30w


“Commonplace and not new, but likely to afford some food for
thought to the uninformed seeker after the principles underlying
political institutions.”
– Springf’d Republican p8 Ap 20 ‘17 100w
+
YOUNG MEN’S CHRISTIAN ASSOCIATIONS.
INTERNATIONAL COMMITTEE. Balancing country life; ed. by
County work dept. $1 (5½c) Assn. press 630 17-17186
A report of a conference held in Chicago in October, 1916, under
the auspices of the County work committee of the Y. M. C. A. The
general subjects for discussion were: The countryside—its home;
The countryside—its school; The countryside—its church; The
countryside—its community. In addition the volume contains
reports of committees, etc.

YOUNG MEN’S CHRISTIAN ASSOCIATIONS.


INTERNATIONAL COMMITTEE. Home of the countryside; ed.
by the County work dept. $1 (5c) Assn. press 630 17-16852
A report of the Country life conference held by the Country work
department of the Y. M. C. A. in New York city in November, 1916.
An address by John R. Mott on An international country life outlook
is followed by papers and discussions of: The family in our country
life; The spirit and needs of the farm home; The home and
community culture; The home and community religion; The home
as a factor in the community. There is also a brief report from the
Country life conference held in Chicago.

YOUNGHUSBAND, SIR GEORGE JOHN. Soldier’s memories in


peace and war. il *$5 Dutton 17-23041
“This book begins with recollections of Sandhurst, chiefly of the
lighter sort. ... Accounts of campaigning in Egypt, South Africa,
India, and elsewhere are to be found in the ‘Memories,’ which
embody reminiscences of Lord Roberts, Cecil Rhodes, and
others.”—Ath
A L A Bkl 14:24 O ‘17

+ Ath p313 Je ‘17 180w


“There is great variety to General Younghusband’s reminiscences.
They cover a considerable period and a wide range of territory.”
+ Boston Transcript p6 S 15 ‘17 400w
“‘Memories,’ from the point of view of interest and of
workmanship, is one of the best collections of reminiscences that
have recently been brought out. One is envious of the life that has
made them possible.”
+ Dial 64:72 Ja 17 ‘18 400w
“An interesting book, racy with the individuality of its soldier
author, and as full of stirring and unusual adventure as a
romance.”
+ N Y Times 22:293 Ag 12 ‘17 660w
“Abounds in anecdotes and fun.”
+ Outlook 116:660 Ag 29 ‘17 30w
“This book is very good company. It is simply the entertaining talk
of a soldier who has seen much active service, who has gained a
wide knowledge of men and manners, and who knows how to tell
his experiences with humor, precision, and occasional emotion.”
+ Spec 118:566 My 19 ‘17 1750w
“As an absorbing record of personal adventure and humor the
book will find a place beside Sir Robert Baden-Powell’s ‘Indian
memories,’ which it somewhat resembles. Both are written in an
easy, sketchy and informal style, and both authors are born
raconteurs.”
+ Springf’d Republican p15 S 30 ‘17 630w

+ The Times [London] Lit Sup p182 Ap 19


‘17 1100w
YOXALL, SIR JAMES HENRY. Collecting old glass: English and
Irish. (Collectors’ pocket ser.) il *75c (3½c) Doran 738.2 (Eng ed
17-18348)
This small book seems to cover an extensive field. Among the
chapters are: Old English glassware, Seven general guides and
tests, Blown ware, Cut, moulded, and engraved ware, Old coloured
glass, Old drinking glasses, The various types of stem, The various
shapes of bowl, etc. The author says, “Diffuseness has been
avoided, but this, I hope, has enabled me to make the book the
more lucid, as well as the more succinct. At any rate it affords
hints, general rules, and warnings more numerous and more
practical than any published until now.”
+ R of Rs 56:220 Ag ‘17 100w
“The evident gusto with which he treats each of his subjects
proclaims him a born collector. His stream of information (not
always very clear) runs wide rather than deep, and generally the
matter surpasses the manner. The handbooks are short cuts to
successful collecting rather than subtle appreciations of design and
craftsmanship.”
+ Spec 116:634 My 20 ‘16 220w

YOXALL, SIR JAMES HENRY. Collecting old miniatures.


(Collectors’ pocket ser.) il *75c (3½c) Doran 757 (Eng ed 18-
18349)
The author says, “I wrote this book with delight, for the sheer
pleasure of writing about miniatures.” He has illustrated the book
with reproductions from his own collection and has supplied details
as to price, etc. Contents: Can it still be done? Where and how
collecting miniatures can be done; Counterfeits and their
detection; Classes of miniatures; The transition to ivory; Miniatures
done on paper; Miniatures done on ivory; French miniatures on
ivory; Miniatures done in enamel; Miniatures done on porcelain;
Miscellanea and signatures.
N Y Br Lib News 3:143 S ‘16
“Much information in little space, yet not unduly condensed. The
illustrations add positively to the value.”
+ Outlook 115:758 Ap 25 ‘17 20w
“Unlike most handbooks for collectors, it is a distinct pleasure to
read because of the spirited manner in which miniatures are
described.”
+ R of Rs 56:220 Ag ‘17 70w
“It requires some confidence to bring out a book on miniatures in
the midst of such a war as this, when the scant attention that can
be spared to the pictorial arts is largely given to powerful poster
work—the crashing of savage colours slapped on to canvas by a
deft spades-man. It is courageous, it is even refreshing. The
illustrations are well chosen, many, and good.”
+ Spec 116:634 My 20 ‘16 220w

Z

ZAHM, JOHN AUGUSTINE (H. J. MOZANS, pseud.). Great


inspirers. *$1.50 Appleton 920.7 17-5139
“The Reverend J. A. Zahm ... writes most persuasively of the
capabilities of women as the friends and advisers of men. He has
taken as examples of women who deserved this title the Roman
woman Paula and her gifted daughter, the virgin, Eustochium, who
were privileged to collaborate with Saint Jerome in his labors in
translating the Bible and providing copious commentaries thereon;
and also that Beatrice Portinari, whom Dante loved.” (R of Rs) An
earlier book by the author treated of “Women in science.”
Boston Transcript p6 Ap 25 ‘17 270w

Cath World 105:108 Ap ‘17 300w

Cleveland p58 Ap ‘17 50w

+ Dial 62:531 Je 14 ‘17 150w


“The author’s remarkable ecclesiastical scholarship and his
seemingly thorough acquaintance with classic and mediaeval Latin
have enabled him to give us a little book that is balanced in
content, fine in spirit and most interesting in manner.” Frank
Macdonald
+ N Y Call p15 Jl 15 ‘17 380w

R of Rs 55:557 My ‘17 100w


St Louis 15:185 Je ‘17 50w

ZAHM, JOHN AUGUSTINE (H. J. MOZANS, pseud.). Quest of El


Dorado; the most romantic episode in the history of South
American conquest. il *$1.50 (5c) Appleton 918 17-25280
Father Zahm is a South American explorer of note and author of
several books on that country. In this volume he goes back to early
history to tell the story of some of the expeditions that went in
quest “of that extraordinary will-o’-the-wisp, usually known as El
Dorado.” His study throws new light on the conquistadores,
showing that they were not moved solely by thirst for gold. He
says, “So marvelous were their achievements that, were they not
attested by the most unquestionable of documents, we should be
disposed to place the old chronicles which describe them in the
same category as the Arthurian romances.” The chapters were
written for the Pan-American Bulletin in 1912, and are reprinted
with a few changes and additions. A bibliography gives a list of the
principal works cited.
+ Cath World 106:546 Ja ‘18 230w
“Scholarly volume.”
+ Outlook 117:516 N 28 ‘17 140w
“A most romantic tale, carrying historical values, and touched with
all the color and zest of fiction.”
+ R of Rs 57:220 F ‘18 160w
“Rev. J. A. Zahm has recently collected all possible material
regarding this celebrated legend, and the result is a book which is
really a fascinating tale of adventure.”
+ Springf’d Republican p6 Ja 7 ‘18 270w
ZANGWILL, ISRAEL. Principle of nationalities. *50c (4c) Macmillan
904 17-14064
This discourse formed the Conway memorial lecture, delivered at
South Place institute, London, on March 8, 1917. Mr Zangwill
argues that “neither identity of race, nor of language, nor of
religion, nor of territory, nor of interests, nor of culture, nor of
soul, is indispensable to a nationality,” but that it is “a state of
mind corresponding to a political fact.” He then, after classifying
the political varieties of nationality as simple, complex, compound
and hybrid, goes on to consider “the psychological aspect and
genesis of nationality.” He asserts that now that nationalism is
closing in upon the world, we should remember that “the real
needs of nationalities are not independence, but freedom from
oppression,” and that “internationalism, so far from being the
antithesis of nationalism, actually requires nations to interrelate.”
“An analysis of nationality that is sane and penetrating.”
+ A L A Bkl 14:43 N ‘17
“We do not know how the hearers digested it. A first reading gives
us the impression of a pudding so full of fruit that we are amazed
it keeps together so well.”
+ Ath p305 Je ‘17 120w

Cleveland p107 S ‘17 40w


“There is nothing that can be rightly called a positive conclusion to
the work, though it sparkles with epigrams and contains many
undoubted sociological truths stated in very concise and striking
language.” J. W.
– N Y Call p15 Ag 19 ‘17 550w
+
“The chief merit of Mr Zangwill’s thought is, indeed, just this: that
it leaves the way open for the entrance of the idea that man may
be intensely and locally patriotic and yet internationally right-
minded.”
+ No Am 206:639 O ‘17 850w

Springf’d Republican p6 Jl 25 ‘17 500w

ZIMMER, GEORGE FREDERICK. Mechanical handling and storing


of material. il *$12.50 Van Nostrand 621.86 (Eng ed 16-17167)
“The book is written from the British viewpoint, and while the
author has included American practice he has of course not done
so with the first-hand knowledge of an American. ... The forty-four
chapters of the book are grouped under the heads of ‘Continuous
handling of material,’ ‘Continuous handling of material by
Pneumatic or hydraulic means,’ ‘Intermittent handling of material,’
‘Unloading and loading appliances,’ ‘Miscellaneous installations’ and
the ‘Automatic weighing of material’. Eighteen chapters under the
first two groups cover all kinds of conveyors. Cableways and
telphers are included in the third group.”—Engin News-Rec
Cleveland p150 D ‘16 30w
“The facts that the field of engineering which this bulky treatise
covers has had an enormous development in the past quarter
century, and that comparatively little on the subject has been
published, are the principal justifications for the purchase of the
book by American engineers. ... The illustrations and other
mechanical work are hardly up to the standard of the price of the
volume.”
Engin News-Rec 78:364 My 17 ‘17 300w
“Timely reprints from Cassier’s Engineering Monthly. Well
illustrated.”
+ N Y P L New Tech Bks p9 O ‘17 70w
Pittsburgh 22:125 F ‘17 60w

St Louis 15:13 Ja ‘17

2. This book is mentioned for the first time in this volume.


List of Documents and Pamphlets for Use in the
Smaller Libraries

Compiled by Miss Edna B. Gearhart, Documents Division, New York


Public Library

Under the Direction of

MISS ADELAIDE R. HASSE


Accidents
Accidents and accident prevention in machine building. Lucian W.
Chaney and Hugh S. Hanna. (U.S. Labor statistics. Bul. no. 216)
117p pa 25c ‘17 Supt. of doc.
Accounting
Accounting records for country creameries. John R. Humphrey.
(U.S. Agric. Bul. no. 559) 37p pa ‘17 U.S. Agric.
Accounting, Farm
Use of a diary for farm accounts. E. H. Thomson. (U.S. Farmers’
Bul. 782) 19p ‘17 Supt. of doc.
Agricultural extension
County agricultural agent work in the northern and western
states; status and results in 1916. W. R. Lloyd. (U.S. Agric.
S.R.S. Doc. 60. Circular 5, Extension N.) 26p pa ‘17 U.S. Agric.
Agriculture
Bean culture. A. L. Strausz. (Washington. Agric. Experiment
station. Popular Bul. no. 111) 4p pa ‘17 Pullman, Wash.
Cabbage and cauliflower culture. C. B. Sprague. (Washington.
Agric. Experiment station. Popular Bul. no. 110) 4p pa ‘17
Pullman, Wash.
Celery culture. F. W. Allen. (Washington. Agric. Experiment
station. Popular Bul. no. 109) 4p pa ‘17 Pullman, Wash.
Farming on a war basis. O. R. Johnson. (Missouri. Agric. college.
Extension service. Circular 31) 20p pa ‘17 Columbia, Mo.
Field bean production. (N.J. Agric. Experiment station. Circular
70) 4p pa ‘17 New Brunswick, N.J.
Field pea production. E. G. Schafer and E. F. Gaines. (Wash. Agric.
Experiment station. Bul. 140) 16p pa ‘17 Pullman, Wash.
Forcing of strawberries. Florence I. Kinnison. (Colorado. Agric.
Experiment station. Bul. 222) 8p pa ‘17 Fort Collins, Colo.
Grow beans; beans will be needed for our army and navy; they
are now worth $9 a bushel. (Wis. Agric. College extension
service. Circular 71) 4p pa ‘17 Madison, Wis.
Lettuce growing in California. Stanley S. Rogers. (California. Agric.
Experiment station. Circular no. 160) 16p pa ‘17 Berkeley, Cal.
Soybeans and cowpeas. J: R. Fain and P. O. Vanatter. (Georgia.
College of agric. Extension div. Circular 46) 8p pa ‘17 Athens,
Ga.
Soybeans and cowpeas in Illinois. W. L. Burlison and O. M. Allyn.
(Illinois. Agric. Experiment station. Bul. 198) 20p pa ‘17 Urbana,
Ill.
Soybeans: their culture and use. (Ohio. Agric. Experiment station.
Bul. 312) 600p pa ‘17 Wooster, O.
Tomato as a farm crop for the canning factory; prepared under
the direction of C. G. Woodbury. H. J. Reed. (Indiana. Agric.
Experiment station. Circular 59) 28p pa ‘17 La Fayette, Ind.
See also Corn; Crops; Dairying; Farm equipment; Farms;
Feedstuffs; Foods; Gardening; Live stock; Milk; Poultry; Silos;
Soils; Soybeans; Vegetables
Alaska
Information for prospective settlers in Alaska. C. C. Georgeson.
(Alaska. Agric. Experiment station. Circular no. 1, rev.) 30p il pa
‘16 Supt. of doc.
Amusements
Things I like to do, for boys and girls; a list of books of
amusements. Lillian A. Sutherland, Public Library, Kansas City,
Mo. 16p pa ea 10c; 100 copies $2 ‘16 Wilson, H. W.
Apples

Packing

Barrel packing of apples. C. L. Burkholder. (Indiana. Purdue univ.


Dept. of agric. Extension Bul. no. 59) 8p pa ‘17 La Fayette, Ind.
Modern methods of packing apples. (Canada. Agric. dept. Fruit
branch. Bul. 2) 60p pa ‘17 Ottawa, Canada
Packing of apples in California. Warren P. Tufts. (California. Univ.
agric. Experiment station. Circular no. 178) 31p pa ‘17 Berkeley,
Cal.
Arbitration and conciliation
Railroad labor arbitrations; report of the U.S. Board of mediation
and conciliation on the effects of arbitration proceedings upon
rates of pay and working conditions of railroad employees;
prepared under the direction of the Board, by William Jett
Lauck. (U.S. 64th Cong., 1st sess. S. Doc. 493) 608p pa 45c ‘16
Supt. of doc.
Railway strikes and lockouts; a study of arbitration and
conciliation laws of the principal countries of the world providing
machinery for the peaceable adjustment of disputes between
railroads and their employees and laws of certain countries for
the prevention of strikes. (U.S. Bd. of mediation and
conciliation) 367p pa 30c ‘16 Supt. of doc.
Art
National gallery of art. R: Rathbun. (U.S. National museum. Bul.
70) 189p il cl $1 ‘16 Supt. of doc.
Arts and crafts
Annotated list of books on the arts for the teacher and student;
comp. by Mildred H. Lawson; rev. by Royal B. Farnum. (Univ. of
the State of N.Y. Bul. 633) 87p pa ‘17 Albany, N.Y.
Art education; an investigation of the training available in New
York city for artists and artisans. (Metropolitan museum of art,
N.Y.) 46p pa 10c ‘16 New York, N.Y.
Some facts concerning manual arts and homemaking subjects in
156 cities. Joseph C. Park. (U.S. Educ. Bul. no. 36) 25p pa 5c
‘16 Supt. of doc.
See also Basketry
Asparagus
Asparagus. H. C. Thompson. (U.S. Farmers’ Bul. 829) 20p pa U.S.
Agric.
Babies
Baby health conferences; what they teach; comp. by Jessie P.
Rich. (Texas. University. Bul. no. 1708) 18p pa ‘17 Austin, Tex.
Goatsmilk for infant feeding. W. H. Jordan and G. A. Smith. (N.Y.
Agric. Experiment station, Geneva. Bul. 429) 20p pa ‘17 Geneva,
N.Y.
What about the babies; an appeal in their behalf. (Mich. State
board of health) 8p pa n.d. Lansing, Mich.
What the baby health conferences teach; comp. by Jessie P. Rich.
(Texas. Univ. Bul. 1708) 18p pa ‘17 Austin, Tex.
See also Children
Basketry
Pine-needle basketry in schools. W: C. A. Hammel. (U.S. Educ.
Bul. no. 3) 18p pa 5c ‘17 Supt. of doc.
Bees
Bees for the farmer. J. Troop and W. A. Price. (Indiana. Agric.
Experiment station. Circular no. 61) 20p pa ‘17 La Fayette, Ind.
Birds
Canaries, their care and management. Alexander Wetmore. (U.S.
Farmers’ Bul. 770) 20p pa 5c ‘16 Supt. of doc.
How to attract birds in northeastern United States. W. L. McAtee.
(U.S. Farmers’ Bul. 621) 16p pa ‘17 U.S. Agric.
How to attract birds in the middle Atlantic states. W. L. McAtee.
(U.S. Farmers’ Bul. 844) 16p pa ‘17 U.S. Agric.
Book publication
Graphic survey of 1890-1916. Fred E. Woodward. (U.S. Educ. Bul.
1917, no. 14) 26p pa 5c ‘17 Supt. of doc.
Book selection
Best books of 1915; selected for a small public library. (Univ. of
the State of N.Y. Bul. 619, Library Bibliography Bul. 58) 65p ‘16
Albany, N.Y.
List of books for elementary and rural schools; comp. by Mary
Royce Crawford. (Idaho. Education board. Bul. vol. 3, no. 3) 82p
pa ‘17 Boise, Idaho.
1,000 good books for children, classified and graded list revised,
1914; prepared by National congress of mothers’ literature
committee, Alice M. Jordan, chairman. Reprint 1916 (U.S. Educ.
Home education circular, no. 1; whole no. 634) 40p pa 5c ‘16
Supt. of doc.
Boys’ and girls’ clubs
Boys’ and girls’ clubs. (Missouri. Agric. extension service, Project
announcement no. 9) 23p pa ‘16 Columbia, Mo. Apply to your
senator or congressman or the U.S. Agric.
Boys’ and girls’ corn and cotton clubs. (Louisiana. Agric. and
home economics extension work. Bul. no. 25) 28p pa ‘17 Baton
Rouge, La.
Boys’ club work in Florida. G. L. Herrington. (Florida. Univ. div. of
agric. extension. Cooperative demonstration work in agric. and
home economics. Bul. 8) 16p pa ‘17 Gainesville, Fla.
Boys’ pig clubs. James E. Downing. (Georgia. College of agric.
Extension div. Circular 44) 8p pa ‘17 Athens, Ga.
Buttermaking
Buttermaking on the farm. George H. Barr. (Canada. Agric. Dairy
and cold storage branch. Bul. no. 53) 16p pa ‘17 Ottawa,
Canada
Canning
Canned foods; modern processes of canning in the United States,
general system of grading, and description of products available
for export. (U.S. For. & dom. comm. Miscellaneous ser. no. 54)
79p pa 20c ‘17 Supt. of doc.
Canning by the cold pack method. C. H. Lee and R. M. Atkinson.
(Manitoba. Agric. and immigration. Extension Bul. no. 12) 23p
pa ‘17 Winnipeg, Canada
Canning for pleasure and profit. Elizabeth B. Kelly. (Wis. Univ.
college of agric. Extension service. Circular 68) 16p pa ‘17
Madison, Wis.
Preservation of food: home canning; comp. by Ethel M. Chapman.
(Ontario. Dept. of agric. Women’s institutes. Bul. 252) 31p pa
‘17 Toronto, Canada
See also Gardening; Home economics
Canning clubs
Marketing of canning club products. Lewis B. Flohr. (U.S. Markets
bur. Doc.—Markets 5) 8p pa ‘17 U.S. Agric.
Cats
Domestic cat, bird killer, mouser and destroyer of wild life; means
of utilizing and controlling it. Edward Howe Forbush. (Mass.
State bd. of agric. Economic biology. Bul. no. 2) 112p pa ‘16
Boston, Mass.
Cattle
Breeds of dairy cattle. H. P. Dairs. (U.S. Farmers’ Bul. 893) 35p pa
‘17 U.S. Agric.
Celery storage
Celery storage experiments. H. C. Thompson. (U.S. Agric. Bul. no.
579) 26p pa 5c ‘17 Supt. of doc.
Cheese
Home cheese making. H. F. Judkins and P. A. Downs.
(Connecticut. Agric. college. Extension service. Bul. no. 9) 16p
pa ‘17 Storrs, Conn.
Methods of making some of the soft cheeses. W. W. Fisk. (New
York. Cornell agric. Experiment station. Circular no. 30) 62p pa
‘15 Ithaca, N.Y.
Cheese factories
Correct payment for cheese factory milk by the Babcock test. J. L.
Sammis. (Wisconsin. Agric. Experiment station. Bul. no. 276)
42p pa ‘17 Madison, Wis.
Child labor
Child labor in warring countries; a brief review of foreign reports.
Anna Rochester. (U.S. Children’s bur. Pub. no. 27. Industrial ser.
no. 4) 75p pa 10c ‘17 Supt. of doc.
List of references on child labor, compiled under the direction of
H. H. B. Meyer, by Laura A. Thompson, librarian, Children’s
bureau. (U.S. Children’s Bureau. Industrial ser. no. 3. Bureau
pub. no. 18) 161p 20c ‘16 Supt. of doc.
Rules and regulations made by the board consisting of the
attorney general, the secretary of commerce, and the secretary
of labor for carrying out the provisions of an act to prevent
interstate commerce in the products of child labor, and for other
purposes, approved Sept. 1, 1916. (U.S. Labor. Circular no. 1)
10p pa 5c ‘17 Supt. of doc.
Suggestive program for child labor day, January 29, 1917. (Univ.
of the State of N.Y. Library ref. section) 12p pa ‘17 Albany, N.Y.
Child welfare
Child welfare research station. (Iowa. State univ. Bul. n.s. 107)
18p pa ‘16 Iowa City, Ia.
Summary of child-welfare laws passed in 1916. (U.S. Children’s
bur. Miscellaneous ser. no. 7) 74p pa 10c ‘17 Supt. of doc.
Children

Foods

Food for growing children. Jessie P. Rich. (Texas. Univ. Bul. 1707)
20p pa ‘17 Austin, Tex.
Suggestions for infant feeding. Anna E. Richardson. (Texas. Univ.
Bul. 1706) 11p pa ‘17 Austin, Tex.
What to feed the children. Dorothy Reed Mendenhall and A. L.
Daniels. (Wis. Univ. Agric. College extension service. Circular 69)
10p pa ‘17 Madison, Wis.
Children’s library
Child in the library. (Riverside public library. Bul. 146) 10p pa ‘17
Riverside, Cal.
Citizenship
Proceedings of the first citizenship convention held at
Washington, D.C., July 10-15, 1916. Raymond F. Crist. (U.S.
Labor) 86p pa 10c ‘17 Supt. of doc.
Work of the public schools with the Bureau of naturalization in the
preparation for citizenship responsibilities of the candidate for
naturalization. (U.S. Bur. of naturalization. Extract from report of
Comr., 1916) 50p pa ‘17 Supt. of doc.
City and county consolidation
Report of the Los Angeles realty board on city and county
consolidation. 28p pa ‘17 Los Angeles, Cal.
City planning
City planning. Frank G. Bates. (Indiana. Bur. of legislative
information. Bul. no. 8) 31p pa Dec. ‘16 Fort Wayne, Ind.
Coal
Economical purchase and use of coal for heating homes with
special reference to conditions in Illinois; a non-technical
manual for the householder and operator of small house-
heating plants. (Illinois. Univ. Eng. Extension station. Circular
no. 4) 58p pa 10c ‘17 Urbana, Ill.
Commerce
Act to regulate commerce (as amended) including text or related
sections; rev. to Jan. 1, 1917 (U.S. Interstate commerce comm.)
157p pa 10c ‘17 Supt. of doc.
Concluding chapter of the Federal trade commission report on
cooperation in American export trade. (U.S. Federal trade
comm.) 14p pa 5c ‘16 Supt. of doc.
Report on cooperation in American export trade. (U.S. Federal
trade comm.) 2v pa $1.15 ‘16 Supt. of doc.
Commercial organization, German
German foreign-trade organization with supplementary statistical
material and extracts from official reports on German methods.
Chauncey Depew Snow. (U.S. For. & dom. comm. Miscellaneous
ser. no. 57) 182p pa 20c ‘17 Supt. of doc.
Community and national life
Lessons in community and national life. (U.S. Educ. Community
leaflets)
No. 1. Sec. A. Designed for use in the upper classes of the high
school. 32p pa ‘17 Supt. of doc.
No. 2. Sec. B. Designed for use in the upper grades of elementary
schools and the first year of high school. 32p pa ‘17 Supt. of
doc.
No. 3. Sec. C. Designed for use in the intermediate grades. 32p
pa ‘17 Supt. of doc.
These lessons will be issued each month during the school year,
1917-18. They will be edited by Charles H. Judd, director of the
school of education of the University of Chicago, and Leon C.
Marshall, dean of the school of commerce and administration of
the University of Chicago. The lessons will be prepared in three
sections, namely, Section A, for the upper classes of high
schools; Section B, for the upper grades of elementary schools
and the first class of high schools; Section C, for intermediate
grades of elementary schools. Each section will contain three or
four lessons. Eight numbers of each section will be issued, one
number appearing on the first of each calendar month. Copies
may be purchased from the U.S. Food administration,
Washington, D.C., at the following prices: One copy, 5 cents;
each additional copy in same order, 3 cents; 100 copies, $2; 500
copies, $5; 1,000 copies, $9.50; subscriptions for the series of
any section, eight times the prices named. Such subscriptions
are urged in order to assure prompt and regular delivery.
Conscription
Conscription in the Confederate states of America, 1862-1865. R.
P. Brooks. (Ga. univ. Bul. vol. 17, no. 4) 442p pa ‘17 Athens, Ga.
Cooperation
Business practice and accounts for cooperative stores. J. A.
Bexell. (U.S. Agric. Bul. 381) 56p 5c ‘16 Supt. of doc.
Co operate! (Texas. Markets and warehouse commission. Bul. no.
37) 36p pa ‘17 Austin, Tex.
Cooperative associations, organizing. James E. Boyle. (N.D. Agric.
Experiment station. Circular 16) 24p pa ‘17 Fargo, N.D.
Cooperative retail delivery; the organization and methods of
central delivery systems. Walton S. Bittner. (Indiana. Univ.
Extension division. Bul. vol. 3, no. 1) 30p pa ‘17 Bloomington,
Ind.
How farmers may improve their personal credit through
cooperation. C. W. Thompson. (U.S. Farmers’ Bul. 654) 16p pa
5c ‘17 Supt. of doc.
Survey of typical cooperative stores in the U.S. J. A. Bexell. (U.S.
Agric. Bul. 394) 32p 5c ‘16 Supt. of doc.
Copyright
Copyright law of the United States of America; being the act of
March 4, 1909, (in force July 1, 1909) as amended by the acts
of August 24, 1912, March 2, 1913 and March 28, 1914,
together with rules for practice and procedure under section 25
by the Supreme Court of the United States. (Copyright office.
Bul. no. 14) 66p pa ‘16 Supt. of doc.
Corn
Corn. (N.J. Agric. Experiment station. Circular 69) 7p pa ‘17 New
Brunswick, N.J.
Corporations

Service instruction

Service instruction of American corporations. Leonhard F. Fuld.


(U.S. Educ. Bul. 1916, no. 34) 73p pa 15c ‘17 Supt. of doc.
Cost of living
Food products report of Governor Beeckman’s committee on living
costs in Rhode Island, pt. 2 21p pa Jan. 29, ‘17 Providence, R.I.
Country life
Country church; an economic and social force. C. J. Galpin.
(Wisconsin. Agric. Experiment station. Bul. 278) 48p pa ‘17
Madison, Wis.
Crops
Preparing for a large corn crop. George A. Crabb. (Georgia. State
college of agric. Extension div. Circular 43) 4p pa ‘17 Athens,
Ga.
Dairying
Feeding and management of dairy calves and young dairy stock.
W. K. Brainerd and H. P. Davis. (U.S. Farmers’ Bul. 777) 20p pa
gratis ‘17 U.S. Agric.
Feeds for dairy cows; a comparative test of high silage and low
mixed concentrates; low silage and high mixed concentrates;
and silage and cotton seed meal rations. Milton P. Jarnagin and
O. T. Goodwin. (Georgia. State college of agric. Extension
circular 45) 8p pa ‘17 Athens, Ga.
How to keep a record of the dairy herd. C. H. Staples and C. W.
Radway. (Louisiana. State univ. Extension division. Circular no.
19) 12p pa ‘17 Baton Rouge, La.
See also Milk
Danish West Indies
Danish West Indies; their resources and commercial importance.
N. G. Brock, P. S. Smith, and W. A. Tucker. (U.S. Foreign and
domestic commerce bur. Special agents ser.) 68p pa ‘17 Supt. of
doc.
Defective and delinquent classes
Mental aspects of delinquency. Truman Lee Kelley. (Texas univ.
Bul. no. 1713) 125p pa ‘17 Austin, Tex.
Municipal correction farms; a report from the new city Jail
association of Los Angeles. 6p ‘17 Los Angeles, Cal.
Dependents
Care of dependents of enlisted men in Canada. S. Herbert Wolfe.
(U.S. Children’s Bur. Miscellaneous ser. no. 10) 56p pa 10c Supt.
of doc.
Digitalis
Activity of wild American digitalis. G: B. Roth. (U.S. Public health
service. Reprint no. 391) 6p pa 5c ‘17 Supt. of doc.
Diplomatic service
Conference on training for foreign service called by the
commissioner of education of the United States and held in the
city of Washington, December 31, 1915. Glen Levin Swiggett.
(U.S. Educ. Bul. 1917, no. 37) 67p pa 10c ‘17 Supt. of doc.
Divorce and desertion
Survey of the extent, financial and social cost of desertion and
artificially broken homes in Kansas City, Missouri, during the
year 1915. Eva M. Marquis. (Kansas City. Bd. of public welfare)
51p pa ‘16 Kansas City, Mo.
Drainage
Organization, financing, and administration of drainage districts.
H. S. Yohe. (U.S. Farmers’ Bul. 815) 37p pa U.S. Agric.
Tile drainage on the farm. E. R. Jones and O. R. Zeasman.
(Wisconsin. Agric. Experiment station. Bul. 284) 32p pa ‘17
Madison, Wis.
Drinking fountains
Drinking fountains; investigation of fountains at the University of
Minnesota. H. A. Whittaker. (U.S. Public health service. Reprint
no. 397) 10p pa 5c ‘17 Supt. of doc.
Dyes and dyeing
Artificial dyestuff used in the United States, quantity and value of
foreign imports and of domestic production, fiscal year 1913-14;
with bibliography. Thomas H. Norton. (U.S. Foreign and
domestic commerce bur. Special agents ser. 121) 254p pa 30c
‘16 Supt. of doc.
Education
Development of arithmetic as a school subject. Walter Scott
Monroe. (U.S. Educ. Bul. 1917, no. 10) 170p pa 20c ‘17 Supt. of
doc.
Digest of state laws relating to public education in force January
1, 1915; comp. by William R. Hood, and others. (U.S. Educ. Bul.
no. 47, 1915) 987p pa 60c ‘16 Supt. of doc.
Education; publications relating to the above subject for sale by
the superintendent of documents, Washington, D.C. 6th ed
Price list 31. 51p pa ‘17 Supt. of doc.
Money value of education. A. Caswell Ellis. (U.S. Educ. Bul. 1917,
no. 22) 52p pa 15c ‘17 Supt. of doc.
Rural-teacher preparation in county training schools and high
schools. H. W. Foght. (U.S. Educ. Bul. 1917, no. 31) 71p pa 10c
‘17 Supt. of doc.
Selected list of books on the education of early childhood. (U.S.
Educ. Circular no. 1) 14p pa 5c ‘17 Supt. of doc.
Vocational teachers for secondary schools; what the Land-grant
colleges are doing to prepare them. Chester D. Javis. (U.S.
Educ. Bul. 1917, no. 38) 85p pa 10c ‘17 Supt. of doc.

Negro

Study of the private and higher schools of colored people in the


United States; prepared in cooperation with the Phelps-Stokes
fund under the direction of Thomas Jesse Jones, specialist in
the education of racial groups. (U.S. Educ.) 2v: v 1 (Bul. 1916,
no. 38) 423p pa ‘17 Supt. of doc.; v 2 (Bul. 1916, no. 39) 724p
pa $1.25 ‘17 Supt. of doc.

Public service

University training for public service; a report of the meeting of


the association of Urban universities, Nov. 15-17, 1915. (U.S.
Educ. Bul. 1916, no. 30) 94p pa 15c ‘17 Supt. of doc.
Education, Secondary
Reorganization of English in secondary schools; report by the
National joint committee on English representing the
Commission on the reorganization of secondary education of the
National education association and the National council of
teachers of English; comp; by James Fleming Hosic. (U.S. Educ.
Bul. 1917, no. 2) 181p pa 20c ‘17 Supt. of doc.
Eggs
Breeding for egg production: Part I, A study of annual and total
production. E. D. Ball, B. Alder, and A. D. Egbert. (Utah. Agric.
college. Experiment station. Bul. no. 148) 60p pa ‘16 Logan,
Utah
Breeding for egg production: Part II, Seasonal distribution of egg
production with especial reference to “winter” egg production.
E. D. Ball and Byron Alder. (Utah. Agric. Experiment station. Bul.
149) 71p pa ‘17 Logan, Utah
Care of eggs for market. M. C. Kilpatrick. (Ohio. Agric. college.
Extension service. Bul. vol. XII, no. 1) 20p pa ‘17 Columbus, O.
Community egg circle. C. E. Bassett and W. H. Kerr. (U.S. Farmers’
Bul. 656) 8p pa 5c ‘17 U.S. Agric.
Egg production in cities, towns and villages. W. R. Graham.
(Ontario. Agric. Circular no. 2) 7p pa ‘17 Toronto, Canada

You might also like