(Original PDF) SAS Certification Prep Guide Base Programming for SAS9, Fourth Edition download
(Original PDF) SAS Certification Prep Guide Base Programming for SAS9, Fourth Edition download
https://ebookluna.com/product/original-pdf-sas-certification-
prep-guide-base-programming-for-sas9-fourth-edition/
(eBook PDF) SAS Certified Specialist Prep Guide: Base Programming Using SAS
9.4
https://ebookluna.com/product/ebook-pdf-sas-certified-specialist-prep-
guide-base-programming-using-sas-9-4/
(eBook PDF) Business Analytics Using SAS Enterprise Guide and SAS
Enterprise Miner
https://ebookluna.com/product/ebook-pdf-business-analytics-using-sas-
enterprise-guide-and-sas-enterprise-miner/
Prepare Your Data for Tableau: A Practical Guide to the Tableau Data Prep
Tool (eBook PDF)
https://ebookluna.com/product/prepare-your-data-for-tableau-a-practical-
guide-to-the-tableau-data-prep-tool-ebook-pdf/
(eBook PDF) SSAT Lower Level Prep Book: Study Guide & Practice Test
Questions for the SSAT Elementary Level Test
https://ebookluna.com/product/ebook-pdf-ssat-lower-level-prep-book-study-
guide-practice-test-questions-for-the-ssat-elementary-level-test/
Bicycling for Transportation: An Evidence-Base for Communities 1st edition-
eBook PDF
https://ebookluna.com/download/bicycling-for-transportation-an-evidence-
base-for-communities-ebook-pdf/
https://ebookluna.com/product/ebook-pdf-pediatric-nurse-practitioner-
certification-review-guide-6th-edition/
https://ebookluna.com/product/ebook-pdf-lpic-1-linux-professional-
institute-certification-study-guide-4th-edition/
https://ebookluna.com/product/ebook-pdf-midwifery-womens-health-nurse-
practitioner-certification-review-guide-4th-edition/
(eBook PDF) Linux+ and LPIC-1 Guide to Linux Certification 5th Edition
https://ebookluna.com/product/ebook-pdf-linux-and-lpic-1-guide-to-linux-
certification-5th-edition/
SAS Certification Prep
®
SAS® Documentation
December 6, 2017
viii Contents
ix
Requirements
To complete examples in this book, you must have access to Base SAS, SAS Enterprise
Guide, or SAS Studio. See Chapter 1, “Setting Up Practice Data,” to ensure you have
proper access.
On the Web
Bookstore www.sas.com/books
Certification www.sas.com/certify
Community communities.sas.com
SAS Global Academic Program www.sas.com and click Learn. Then select
For Students and Educators.
Training www.sas.com/training
Syntax Conventions
The example syntax that is shown in this book includes only what you need to know in
order to prepare for the certification exam. For complete syntax, see the appropriate SAS
reference guide.
xii How to Prepare for the SAS Base Programming for SAS®9 Exam
xiii
Overview
The SAS Certification Prep Guide: Base Programming is a test preparation document
that uses the following environments and products:
• SAS Windowing Environment
• SAS Enterprise Guide
• SAS Studio or SAS University Edition
Documentation Format
Contact [email protected] if you need this document in an alternative digital
format.
xiv Accessibility Features of the SAS Certification Prep Guide
1
Chapter 1
If the result from the OPTIONS procedure code is NORSASUSER, the Sasuser folder is
writable.
If the result from the PROC OPTIONS code is RSASUSER, the Sasuser folder is Read
only, and you must redirect the Sasuser folder by using a LIBNAME statement. To set
up practice data:
1. In the Folders pane, select My Folders. Then, right-click and select New ð Folder.
2 Chapter 1 • Setting Up Practice Data
2. In the Name box, enter a folder name. This example uses the name certprep.
Click Save.
3. Redirect your SASUSER library to the new folder as follows:
If you are using SAS University Edition, submit a LIBNAME statement by copying
the following code into the Code tab:
libname sasuser "/folders/myfolders/certprep";
Note: You must use the filename of the new directory. These examples use the name
certprep. If you use another filename, substitute the name that you created.
4. Click Run.
5. Save the program as libname_cert.sas. You must resubmit this LIBNAME statement
program every time you work with the sample data.
6. Copy the sample data program into a new Code window in SAS Studio. You can
access the sample data at http://support.sas.com/publishing/cert/sampdata.txt.
7. Click Run.
Now that the sample data is stored in a permanent directory, reissue the LIBNAME
statement whenever you want to use the data.
5. If the result from the PROC OPTIONS code is RSASUSER, you must redirect the
Sasuser folder by creating a new folder. From your server area, open the Files folder,
right-click a drive or folder, and select New Folder. Enter the new folder name.
Note: If the result from the PROC OPTIONS code is NORSASUSER, the Sasuser
folder is writable, and you do not have to redirect the Sasuser folder. Therefore,
you can skip this step and the next one.
6. Submit the following code in a Code window:
libname sasuser "/folders/myfolders/certprep";
Note: You must use the filename of the new folder. These examples use the name
certprep. If you use another filename, substitute the folder name that you
created for certprep.
7. Copy the sample data program into the Program window and then run the program.
You can access the sample data at http://support.sas.com/publishing/cert/
sampdata.txt.
8. Because you do not need these shortcuts, delete the Program item and all the
shortcuts from the project. This action does not delete the data that you created. To
delete the item from the project, right-click Program and select Delete.
9. In the Confirmation window, click Yes.
4 Chapter 1 • Setting Up Practice Data
5
Chapter 2
Basic Concepts
Getting Started . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
The Basics of the SAS Language . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
SAS Statements . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
Global Statements . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
DATA Step . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
PROC Step . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
A Simple SAS Program . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
Processing SAS Programs . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
Log Messages . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
Results of Processing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
SAS Libraries . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
Definition . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
Predefined SAS Libraries . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
Defining Libraries . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
How SAS Files Are Stored . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
Storing Files Temporarily or Permanently . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
Referencing SAS Files . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
Referencing Permanent SAS Data Sets . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
Referencing Temporary SAS Files . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
Rules for SAS Names . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
SAS Data Sets . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
Overview of Data Sets . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
Descriptor Portion . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
Data Portion . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16
Variable Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17
Variable Names . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18
Type . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19
Length . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 20
Format . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 20
Informat . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
Label . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
SAS Indexes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22
Extended Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22
Chapter Quiz . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22
6 Chapter 2 • Basic Concepts
Getting Started
In the SAS Base Programming for SAS®9 exam, you are not tested on the details of
running SAS software in the various environments. However, you might find such
information useful when working with the practice data.
You can access a brief overview on the windows and menus of the SAS windowing
environment, Enterprise Guide, and SAS Studio at http://video.sas.com/. From
Categories select How To Tutorials ð Programming. Select the video for your SAS
environment. Other tutorials are available from the SAS website.
SAS Statements
A SAS statement is a type of SAS language element that is used to perform a particular
operation in a SAS program or to provide information to a SAS program. SAS
statements are free-format. This means that they can begin and end anywhere on a line,
that one statement can continue over several lines, and that several statements can be on
the same line. Blank or special characters separate words in a SAS statement.
TIP You can specify SAS statements in uppercase or lowercase. In most situations,
text that is enclosed in quotation marks is case sensitive.
Here are two important rules for writing SAS programs:
• A SAS statement ends with a semicolon.
• A statement usually begins with a SAS keyword.
There are two types of SAS statements:
• statements that are used in DATA and PROC steps
• statements that are global in scope and can be used anywhere in a SAS program
Global Statements
Global statements are used anywhere in a SAS program and stay in effect until changed
or canceled, or until the SAS session ends. Here are some common global statements:
TITLE, LIBNAME, OPTIONS, and FOOTNOTE.
DATA Step
The DATA step creates or modifies data. The input for a DATA step can be of several
types, such as raw data or a SAS data set. The output from a DATA step can be of
several types, such as a SAS data set or a report. A SAS data set is a data file that is
formatted in a way that SAS can understand.
For example, you can use DATA steps to do the following:
• put your data into a SAS data set
The Basics of the SAS Language 7
• compute values
• check for and correct errors in your data
• produce new SAS data sets by subsetting, supersetting, merging, and updating
existing data sets
PROC Step
The PROC (procedure) step analyzes data, produces output, or manages SAS files. The
input for a PROC step is usually a SAS data set. The output from a PROC step can be of
several types, such as a report or an updated SAS data set.
For example, you can use PROC steps to do the following:
• create a report that lists the data
• produce descriptive statistics
• create a summary report
• produce plots and charts
data sasuser.admit2;
set sasuser.admit;
where age>39;
run;
proc print data=sasuser.admit2;
run;
The sample SAS program contains a DATA step and a PROC step. The DATA step
produced a new SAS data set. Only those observations with an age value greater than 39
are written to the new SAS data set.
A DATA step begins with a DATA statement, which begins with the keyword DATA. A
PROC step begins with a PROC statement, which begins with the keyword PROC. The
sample program contains the following statements:
data sasuser.admit2;
set sasuser.admit;
where age>39;
run;
proc print data=sasuser.admit2;
run;
TIP The RUN statement is not required between steps in a SAS program. It is a best
practice to use a RUN statement because it can make the SAS program easier to read
and the SAS log easier to understand when debugging.
Log Messages
The SAS log collects messages about the processing of SAS programs and about any
errors that occur. Each time a step is executed, SAS generates a log of the processing
activities and the results of the processing.
When SAS processes the sample program, it produces the log messages shown below.
Notice that you get separate sets of messages for each step in the program.
The Basics of the SAS Language 9
5 data sasuser.admit2;
6 set sasuser.admit;
7 where age>39;
8 run;
NOTE: There were 10 observations read from the data set SASUSER.ADMIT.
WHERE age>39;
NOTE: The data set SASUSER.ADMIT2 has 10 observations and 9 variables.
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
NOTE: There were 10 observations read from the data set SASUSER.ADMIT2.
NOTE: PROCEDURE PRINT used (Total process time):
real time 0.35 seconds
cpu time 0.24 seconds
Results of Processing
data sasuser.admit2;
set sasuser.admit;
where age>39;
run;
When the program is processed, it creates a new SAS data set (sasuser.admit2)
containing only those observations with age values greater than 39. The DATA step
creates a new data set and produces messages in the SAS log, but it does not create a
report or other output.
Note: The default output in SAS Enterprise Guide is SAS Report. To change the default
output in SAS Enterprise Guide to HTML, click Tools and select Options ð Results
ð Results General. Then select HTML. Ensure that you have cleared SAS Report.
10 Chapter 2 • Basic Concepts
Other Procedures
SAS programs often invoke procedures that create output in the form of a report, as is
the case with the FREQ procedure:
Other SAS programs perform tasks such as sorting and managing data, which have no
visible results except for messages in the log. (All SAS programs produce log messages,
but some SAS programs produce only log messages.)
proc copy in=sasuser out=work;
select admit;
run;
SAS Libraries 11
SAS Libraries
Definition
A SAS library contains one or more files that are defined, recognized, and accessible by
SAS, and that are referenced and stored as a unit. One special type of file is called a
catalog. In SAS libraries, catalogs function much like subfolders for grouping other
members.
Defining Libraries
To define a library, you assign a library name to it and specify the location of the files,
such as a directory path.
Discovering Diverse Content Through
Random Scribd Documents
[825] Marchal, Ouv. cit., p. 455, XXVII.
[826] Marchal, Ouv. cit., p. 64.
[827] Malebranche, XIe Entretien sur la
métaphysique.
[828] Max. Simon, De la préservation du
choléra épidémique et d’une hygiène spéciale,
applicable au traitement de la maladie réalisée.
Paris, 1865.
[829] Fonssagrives, Bulletin général de
thérapeutique, t. LXX, p. 35. 1866.
[830] Ch. Anglada, Traité de la Contagion, t.
II, ch. 3, p. 99-150.
[831] Voy. A. Fauvel, le Choléra, étiologie et
prophylaxie... exposé des travaux de la
conférence sanitaire internationale de
Constantinople..... Paris, 1868.
[832] Joannis Varandæi Opera omnia,
Patholog. universalis pars II, cap. XIV, p.
CXXXIX. Lugduni MDCLVIII.
[833] Bally, Études sur la choladrée
lymphatique. Paris, 1833.
[834] Jules Guérin, Bull. de l’Académie de
médecine. Paris, 1865-66, tome XXXI, p. 11.
[835] Rapport sur la marche et les effets du
choléra-morbus dans Paris. Année 1832. Paris,
MDCCCXXXIV.
[836] Double, Rapp. sur le choléra-morbus
épid., p. 147. MDCCCXXXI.
[837] Voici, à ce propos, ce que dit
Broussais, donnant les résultats d’un certain
nombre de nécroscopies rédigées sous ses
yeux: «Ayant examiné douze ou quinze fois le
plexus solaire, et ne l’ayant trouvé que deux fois
un peu injecté, et une seule fois un peu ramolli,
sans que ces lésions se rapportassent à des
symptômes spéciaux, j’ai cessé cette recherche,
qui, continuée par d’autres, n’a pas donné des
résultats différents.» (Le choléra-morbus épid.,
etc., p. 97. 1832.)
[838] Voyez Griesinger, Traité des maladies
infectieuses, trad. par G. Lemattre. Paris, 1868.
[839] Broussais, le Choléra-morbus
épidémique, etc., p. 50 (passim).
[840] Dict. de médecine, 12e édition, par
Littré et Robin, art. Choléra.
[841] Mézeray, Hist. de France, t. II, p. 966.
[842] Voy. le Compendium de méd., au mot
choléra.
[843] Zacutus Lusitanus, Praxeos med.
admir., lib. II, obs. XXIII. Lugduni, 1643.
[844] Zacuti Lusitani Operum tomus
secundus, p. 622, numerus VII, De cholera.
[845] Zacutus, Ibid., Praxeos med. admir.,
lib. II, observ. XVI. Choleræ sævissimæ curatio.
[846] Cœlius Aurelianus, De morbis acutis et
chronicis, lib. III, cap. XIX.
[847] Medicæ artis principes, t. I, p. 236.—
Alexandri Tralliani De arte med., lib. secundus,
cap. XIII, de cholera.
[848] Thomæ Sydenham Opera medica, t. I,
sect. quarta, cap. II.
[849] Sydenham, Op. cit., t. I, sect. IV, cap.
II.
[850] Bontii de medicina Indorum, lib. IV, de
cholera, cap. VI, p. 136. Lugduni Batavorum.
1642.
[851] La préparation officinale que Bontius
prescrit sous le nom d’extrait de safran
(extractum croci) a pour base l’opium (opium
electissimum). L’auteur en donne la formule à la
page 131.
[852] Hippocrate, edit. Foës, de morbis
vulgaribus, lib. VII, sect. VII, p. 1106.—Choleræ
origo et causa.—De affectionibus lib., sect. V, p.
587.—Choleræ curatio. Francofurti. MDXCVI.
[853] Pauli Æginetæ de re medica, cap.
XXXIX, de cholera, in medicæ artis principes (t.
I, p. 458. MDLXVIII).
[854] Celsi de medicina, lib. IV, cap. XI.
[855] Aretæi Cappadocis medici de causis et
signis acutorum morborum, cap. V, de cholera,
in med. art. principes, t. I, p. 11.
[856] Cœlii Aureliani de morbis acutis et
chronicis, lib. III, cap. XIX, p. 253, de cholericis.
[857] Alexandri Tralliani De arte medica, lib.
secundus, cap. XIV, de cholera, in med. art.
princip., t. I, p. 236.
[858] Ballonii opera omnia med., t. II,
consilium LV, p. 252.
[859] Requin, Pathol. méd., t. II, p. 568.
[860] Moreau, Gaz. méd. de Paris, t. IV, 3e
série, p. 213.
[861] Ordonnance du roi. Arrêtés et
règlement pour l’Acad. roy. de médecine. Art. 2.
1820.
[862] Lucrèce, De la nature des choses.
Trad. par Pongerville, Note 43 du livre sixième.
1845.
[863] Broussais, le Choléra-morbus
épidémique, p. 2. 1832.
[864] Victor Gravier (de Marseille),
Dissertation sur le choléra-morbus de l’Inde, 30e
vol. de la collect. des Thèses de Strasbourg.
Première partie. 1823.
[865] Fodéré, Leç. sur les épidémies, t. II, p.
394. 1823.
[866] Broussais, le Choléra-morbus
épidémique, etc. 1832 (passim).
[867] Gravier, Thèse citée, p. 8.
[868] Gravier, Th. cit., p. 16.
[869] Gravier, Th. cit., p. 17.
[870] Gravier, Th. cit., p. 19.
[871] Fuster, des Maladies de la France, etc.,
Appendice, p. 276. 1840.
[872] Requin, Path. médicale, t. II, p. 565.
[873] Requin, de la spécificité dans les
maladies, Thèse de concours. Art. V, prop. I.
1851.
[874] Requin, Pathol. méd., t. III, p. 495-
496.
[875] Grisolle, Traité de pathol. interne, t. I,
p. 708. 1852.
[876] Andral, Cours de pathologie interne,
rédigé par Am. Latour, t. I, p. 120. 1836.
[877] Cette observation est extraite d’un
mémoire manuscrit présenté par les auteurs
que j’ai nommés, à la section médicale de
l’Académie des sciences et lettres de
Montpellier.
[878] Aretæi Cappadocis medici de causis et
signis acutorum morborum, cap. V.
[879] Cœlius Aurelianus, De morbis acutis et
chronicis, lib. III, cap. XIX.
[880] Josephi Quarin animadversiones
practicæ in diversos morbos, cap. X, p. 205.
Viennæ, 1786.
[881] P. Frank, Traité de médecine pratique,
t. III, p. 469. 1820. Trad.
[882] Lind, Essai sur les maladies des
Européens dans les pays chauds, trad. par
Thion de la Chaume. T. II, p. 48. Paris, 1785.
Voyez Dutroulau, Traité des maladies des
Européens dans les pays chauds, 2e édition.
Paris, 1868.
[883] Fodéré, Leçons sur les épidémies, t.
II, p. 426.
[884] Thomæ Sydenham Opera med. T. I, p.
184. Epistola Roberto Brady.
[885] Alexandri Tralliani de arte med., lib.
secundus, cap. XIIII, de cholera.
[886] Ballonii Op. omnia medica, t. III,
consilium LXV.
[887] Voy. Fauvel, Ouv. cité, p. 134.
E R R ATA
Dédicace. V
Préface. VII
Introduction. 1
Chapitre Ier. — De la grande épidémie du
Ve siècle avant l’ère
chrétienne (peste
d’Athènes). 51
—— II. — De la grande épidémie du
IIe siècle de l’ère
chrétienne (peste
Antonine). 113
—— III. — De la grande épidémie du
IIIe siècle après Jésus-
Christ (peste sous
Gallus). 140
—— IV. — De la grande épidémie du
VIe siècle (peste
inguinale). 158
—— V. — Des épidémies de fièvres
éruptives nouvelles
apparues au VIe siècle
de l’ère chrétienne. 215
re.
Section I — De la variole 218
considérée
comme maladie
nouvelle.
—— II. — De la rougeole
considérée
comme maladie
nouvelle. 278
—— III. — De la scarlatine
considérée
comme maladie
nouvelle. 304
—— VI. — De la grande épidémie
gangréneuse du
moyen âge (mal des
ardents, feu Saint-
Antoine). 351
—— VII. — De la grande épidémie du
XIVe siècle (peste
noire). 395
—— VIII. — De la grande épidémie du
XVe siècle (suette
anglaise). 449
—— IX. — De la grande épidémie
syphilitique du XVe
siècle. 535
—— X. — De la grande épidémie
cholérique du XIXe
siècle. 591
Notes. NOTES
Errata. 647
F I N D E LA TA B L E D E S M AT I È R E S
Janvier 1869.
ŒUVRES COMPLÈTES
D’ H IPPOC R ATE
TRADUCTION NOUVELLE AVEC LE
TEXTE EN REGARD
COLLATIONNÉ SUR LES MANUSCRITS ET
TOUTES LES ÉDITIONS
ACCOMPAGNÉE D’UNE
INTRODUCTION
de Commentaires médicaux, de Variantes et de Notes
philologiques
SUIVIE
ŒUVRES
ANATOMIQUES, PHYSIOLOGIQUES
ET MÉDICALES
DE GALIEN
Traduites sur les textes imprimés et
manuscrits
ACCOMPAGNÉES DE SOMMAIRES, DE NOTES,
DE PLANCHES, ETC.
Par le Dr Ch. DAREMBERG
Bibliothécaire de la bibliothèque Mazarine, Bibliothécaire
honoraire de l’Académie de médecine, etc.
BUSSEMAKER et DAREMBERG.
6 forts vol. in-8, gr. papier, imprimé à
l’Imprimerie impériale.
Les tomes I à IV, chacun de 750 pages, sont en
vente. — Prix du vol.: 12 fr.
PUBLICATIONS DE J.-B.
BAILLIÈRE et FILS.
HISTOIRE GÉNÉRALE DES SCIENCES
MÉDICALES. Résumé du cours fait au Collége
de France par M. Ch. Daremberg, chargé du
cours d’histoire de la médecine au Collége de
France, membre de l’Académie de médecine.
Paris, 1869, 1 vol. in-8 de 750 pages.
RECHERCHES SUR L’ÉTAT DE
LA MÉDECINE DURANT LA
PÉRIODE PRIMITIVE de l’histoire
des Indous, par le docteur Ch.
Daremberg, professeur chargé du
cours d’histoire de la médecine au
Collége de France, bibliothécaire de la
Bibliothèque Mazarine. Paris, 1867,
in-8 de 24 pages. 1 fr. 25
NOTICES ET EXTRAITS DES
MANUSCRITS MÉDICAUX GRECS,
LATINS ET FRANÇAIS, des
principales bibliothèques d’Europe,
1re partie, Bibliothèques d’Angleterre,
par le docteur Ch. Daremberg. Paris,
1853, in-8. 7 fr.
GLOSULÆ QUATUOR 4 fr. 50
MAGISTRORUM SUPER
CHIRURGIAM ROGERII ET
ROLANDI, publiées pour la première
fois par le docteur Ch. Daremberg.
Napoli, 1854, in-8 de LXIV — 228
pages.
DE SECRETIS MULIERUM, De
chirurgia, de modo medendi, libri
septem. Poema medicum; nunc
primum ad fidem codicis Mazarinæi,
edidit C. Daremberg. Napoli, 1854, in-8
de 178 pages. 3 fr. 50
HISTOIRE DE LA MÉDECINE
depuis son origine jusqu’au XIXe
siècle, Paris, 1846, 2 vol. in-8. —
LETTRES PHILOSOPHIQUES ET
HISTORIQUES SUR LA
MÉDECINE AU XIXe SIÈCLE, par le
docteur P.-V. Renouard. Troisième
édition, corrigée et considérablement
augmentée. Paris, 1861. In-8 de 240
pages. 15 fr. 50
— Séparément, Lettres
philosophiques et historiques. 3e
édition. 1861, in-8. 3 fr. 50
Ces lettres traitent: I. La médecine jugée par les
médecins. — II. Est-il, en médecine, un moyen de
discerner le vrai du faux, le certain de l’hypothèse? — III.
Des causes qui engagèrent les médecins à quitter la voie
primitive de l’observation pure. — IV. La physiologie
pathologique peut-elle être, oui ou non, en totalité ou en
partie, le fondement direct et immédiat de la
thérapeutique? — V. De l’éclectisme en médecine. — VI.
De l’homœopathie. — VII. Des méthodes thérapeutiques.
— VIII. Réponse à quelques objections concernant la
doctrine empiri-methodique. — IX. Du rang que la
médecine doit occuper dans un système général des
connaissances humaines, et du degré de certitude qu’elle
peut atteindre. — X. Les doctrines médicales devant
l’Académie impériale de médecine. — XI. Les doctrines
médicales devant les Facultés de médecine de France.
HISTOIRE DES SCIENCES
NATURELLES AU MOYEN AGE, ou
Albert le Grand et son époque considérés
comme point de départ de l’école
expérimentale, par F.-A. Pouchet, directeur
du Muséum d’histoire naturelle de Rouen.
Paris, 1853. 1 beau vol. in-8. 9 fr.
Table des matières: Introduction. — École scandinave.
— École franco-gothique. — École bizantine. — École
arabe. — École EXPÉRIMENTALE: Albert le Grand, St-
Thomas d’Aquin, Roger Bacon, Alfred le Philosophe,
Raymond de Lulle, Duns Scott, Trithème, Bazile Valentin,
Nicolas Flamel, Vincent de Beauvais, Abélard, Barthélemy,
Bruneto Latini, Richard de Furnival, Agricola, Platearius,
Simon de Cordo, Leoniceno, J. de Dondis, P. Sanctinus,
Leonard de Vinci, Arnaud de Villeneuve, P. d’Abano,
Lanfranc, Guy de Chauliac, J. de Vigo, Mundinus,
Béranger de Carpi, Achillini, Marco Polo, etc.
L’ÉCOLE DE SALERNE.
Traduction en vers français, par Ch.
Meaux Saint-Marc, avec le texte latin en
regard (1870 vers), précédée d’une
introduction par M. le docteur Ch.
Daremberg. — DE LA SOBRIÉTÉ,
conseils pour vivre longtemps, par L.
Cornaro, traduction nouvelle. Paris,
1861, 1 joli vol. in-18 jésus de LXXII-
344, avec 5 vignettes. 3 fr. 50
LETTRES DE GUI PATIN. 21 fr.
Nouvelle édition augmentée de lettres
inédites, précédée d’une notice
biographique, accompagnée de
remarques scientifiques, historiques,
philosophiques et littéraires, par
Réveillé-Parise, membre de l’Académie
impériale de médecine. Paris, 1846, 3
vol. in-8, avec le portrait et le fac-
simile de Gui Patin.
Les lettres de Gui Patin sont de ces livres qui ne
vieillissent jamais, et quand on les a lues, on en conçoit
aussitôt la raison. Ces lettres sont en effet l’expression la
plus pittoresque, la plus vraie, la plus énergique, non-
seulement de l’époque où elles ont été écrites, mais du
cœur humain, des sentiments et des passions qui
l’agitent. — Tout à la fois savantes, érudites, spirituelles,
profondes, enjouées, elles parlent de tout: mouvements
des sciences, hommes et choses, passions sociales et
individuelles, révolutions politiques, etc. C’est donc un
livre qui s’adresse aux savants, aux médecins, aux
érudits, aux gens de lettres, aux moralistes, etc.
TRAITÉ DE LA CONTAGION,
pour servir à l’histoire des maladies
contagieuses et des épidémies, par Ch.
Anglada, professeur à la Faculté de
médecine de Montpellier. Paris, 1853, 2
vol. in-8. 12 fr.
DOCUMENTS INÉDITS SUR LA
GRANDE PESTE DE 1348.
(Consultation de la Faculté de Paris. —
Consultation d’un praticien de
Montpellier. — Description de G. de
Machault), par le docteur Joseph
Michon. Paris, 1860, in-8. 2 fr. 50
ÉTUDE PRATIQUE,
RÉTROSPECTIVE ET COMPARÉE,
SUR LE TRAITEMENT DES
ÉPIDÉMIES au XVIIIe siècle.
Appréciation des travaux et éloge de
Lepecq de la Cloture, médecin
épidémiographe de la Normandie, par
le docteur Max Simon. Paris, 1853, in-8
de 348 pages. 5 fr.
ENVOI FRANCO CONTRE MANDAT SUR LA
POSTE.
Au lecteur.
Ce livre reproduit intégralement le texte original,
et l’orthographe d’origine a été conservée.
Cependant quelques erreurs typographiques ont été
corrigées. Les corrections sont soulignées en
pointillés gris. En positionnant le curseur sur ces
mots vous pouvez faire apparaître l'orthographe
originale. Les corrections indiquées dans l'Errata ont
également été apportées, et la ponctuation a fait
l'objet de quelques corrections mineures.
Les notes de bas de page ont été renumérotées
consécutivement et placées à la fin du livre.
*** END OF THE PROJECT GUTENBERG EBOOK ÉTUDE SUR LES
MALADIES ÉTEINTES ET LES MALADIES NOUVELLES ***
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.
ebookluna.com