(Ebook PDF) SAS Certified Specialist Prep Guide: Base Programming Using SAS 9.4 Instant Download
(Ebook PDF) SAS Certified Specialist Prep Guide: Base Programming Using SAS 9.4 Instant Download
https://ebooksecure.com/product/ebook-pdf-sas-certified-
specialist-prep-guide-base-programming-using-sas-9-4/
http://ebooksecure.com/product/original-pdf-sas-certification-
prep-guide-base-programming-for-sas9-fourth-edition/
http://ebooksecure.com/product/ebook-pdf-business-analytics-
using-sas-enterprise-guide-and-sas-enterprise-miner/
http://ebooksecure.com/product/ebook-pdf-introduction-to-
programming-using-python-an-1/
http://ebooksecure.com/product/ebook-pdf-introduction-to-
programming-using-visual-basic-10th-edition/
CCSP Certified Cloud Security Professional. Exam Guide
3rd Edition Unknown - eBook PDF
https://ebooksecure.com/download/ccsp-certified-cloud-security-
professional-exam-guide-ebook-pdf/
https://ebooksecure.com/download/ccsp-certified-cloud-security-
professional-all-in-one-exam-guide-ebook-pdf-2/
http://ebooksecure.com/product/ceh-certified-ethical-hacker-all-
in-one-exam-guide-4th-edition-ebook-pdf/
https://ebooksecure.com/download/cc-certified-in-cybersecurity-
all-in-one-exam-guide-ebook-pdf/
http://ebooksecure.com/product/prepare-your-data-for-tableau-a-
practical-guide-to-the-tableau-data-prep-tool-ebook-pdf/
viii How to Prepare for the Exam
On the Web
Bookstore www.sas.com/books
Certification www.sas.com/certify
Communities 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
• DROP= and KEEP= are separated by a vertical bar ( | ) to indicate that they are
mutually exclusive.
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.
x How to Prepare for the Exam
xi
Overview
The SAS Certified Specialist Prep Guide: Base Programming Using SAS 9.4 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.
xii Accessibility Features of the Prep Guide
1
Part 1
Chapter 1
Setting Up Practice Data . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
Chapter 2
Basic Concepts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
Chapter 3
Accessing Your Data . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25
Chapter 4
Creating SAS Data Sets . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 33
Chapter 5
Identifying and Correcting SAS Language Errors . . . . . . . . . . . . . . . . . 59
Chapter 6
Creating Reports . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 75
Chapter 7
Understanding DATA Step Processing . . . . . . . . . . . . . . . . . . . . . . . . . . 109
Chapter 8
BY-Group Processing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 129
Chapter 9
Creating and Managing Variables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 141
Chapter 10
Combining SAS Data Sets . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 175
Chapter 11
Processing Data with DO Loops . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 207
Chapter 12
SAS Formats and Informats . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 225
2
Chapter 13
SAS Date, Time, and Datetime Values . . . . . . . . . . . . . . . . . . . . . . . . . . . 241
Chapter 14
Using Functions to Manipulate Data . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 253
Chapter 15
Producing Descriptive Statistics . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 307
Chapter 16
Creating Output . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 335
3
Chapter 1
Requirements
To complete examples in this book, you must have access to SAS Studio, SAS
Enterprise Guide, or the SAS windowing environment.
Instructions
1. Navigate to support.sas.com/content/dam/SAS/support/en/books/data/base-guide-
practice-data.zip, download and save the practice data ZIP file.
2. Unzip the file and save it to a location that is accessible to SAS.
3. Open the cre8data.sas program in the SAS environment of your choice.
• SAS Studio: In the Navigation pane, expand Files and Folders and then navigate
to the Cert folder within the practice-data folder.
• SAS Enterprise Guide: In the Servers list, expand Servers ð Local ð Files, and
then navigate to the Cert folder in the practice-data folder.
• SAS windowing environment: Click File ð Open Program, and then navigate
to the Cert folder in the practice-data folder.
4. In the Path macro variable, replace /folders/myfolders with the path to the
Cert folder and run the program.
%let path=/folders/myfolders/cert;
4 Chapter 1 • Setting Up Practice Data
Important: The location that you specify for the Path macro variable and the
location of your downloaded SAS programs should be the same location.
Otherwise, the cre8data.sas program cannot create the practice data.
Your practice data is now created and ready for you to use.
TIP When you end your SAS session, the Path macro variable in the
cre8data.sas program is reset. To avoid having to rerun cre8data.sas every
time, run the libname.sas program from the Cert folder to restore the libraries.
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
SAS Program Structure . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
Processing SAS Programs . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
Log Messages . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
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 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
Rules for SAS Names . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
VALIDVARNAME=System Option . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
VALIDMEMNAME=System Option . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16
When to Use VALIDMEMNAME=System Option . . . . . . . . . . . . . . . . . . . . . . . . . 17
SAS Data Sets . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17
Overview of Data Sets . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17
Descriptor Portion . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17
SAS Variable Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18
Data Portion . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 20
SAS Indexes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
Extended Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
Chapter Quiz . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22
6 Chapter 2 • Basic Concepts
Getting Started
In the SAS 9.4 Base Programming – Performance-Based 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 of the windows and menus in the SAS windowing
environment, SAS 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. Input for a DATA can include raw data or a
SAS data set. Output from a DATA step can include 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
• compute values
The Basics of the SAS Language 7
PROC Step
The PROC step analyzes data, produces output, or manages SAS files. The input for a
PROC (procedure) step is usually a SAS data set. Output from a PROC step can include
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
• analyze data
• create a summary report
• produce plots and charts
1 The TITLE statement is a global statement. Global statements are typically outside
steps and do not require a RUN statement.
2 The DATA step creates a new SAS data set named Work.JuneFee. The SET
statement reads in the data from Cert.AdmitJune. The new data set contains only
those observations whose value for Age is greater than 39.
3 If a RUN or QUIT statement is not used at the end of a step, SAS assumes that the
beginning of a new step implies the end of the previous step. If a RUN or QUIT
statement is not used at the end of the last step in a program, SAS Studio and SAS
Enterprise Guide automatically submit a RUN and QUIT statement after the
submitted code.
4 The PROC PRINT step prints a listing of the new SAS data set. A PROC step begins
with a PROC statement, which begins with the keyword PROC.
8 Chapter 2 • Basic Concepts
When a SAS program is submitted for execution, SAS first validates the syntax and then
compiles the statements. DATA and PROC statements signal the beginning of a new
step. The beginning of a new step also implies the end of the previous step. At a step
boundary, SAS executes any statement that has not been previously executed and ends
the step.
Example Code 2 Processing SAS Programs
data work.admit2; /* #1 */
set cert.admit;
where age>39;
proc print data=work.admit2; /* #2 */
run; /* #3 */
1 The DATA step creates a new SAS data set named Work.Admit2 by reading
Cert.Admit. The DATA statement is the beginning of the new step. The SET
statement is used to read data. The WHERE statement conditionally reads only the
observations where the value of the variable Age is greater than 39.
2 The PROC PRINT step prints the new SAS data set named Work.Admit2. The
PROC PRINT statement serves as a step boundary in this example because a RUN
statement was not used at the end of the DATA step. The PROC step also implies the
end of the DATA step.
3 The RUN statement ends the PROC step.
TIP The RUN statement is not required between steps in a SAS program. However, 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.
The Basics of the SAS Language 9
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.
5 data work.admit2;
6 set cert.admit;
7 where age>39;
8 run;
NOTE: There were 10 observations read from the data set CERT.ADMIT.
WHERE age>39;
NOTE: The data set WORK.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 WORK.ADMIT2.
NOTE: PROCEDURE PRINT used (Total process time):
real time 0.35 seconds
cpu time 0.24 seconds
Results of Processing
When the program is processed, it creates a new SAS data set, Work.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.
Other Procedures
SAS programs often invoke procedures that create output in the form of a report, as is
the case with the FREQ procedure:
proc freq data=sashelp.cars;
table origin*DriveTrain;
run;
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 sort data=cert.admit;
by sex;
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.
You can also specify an engine, which is a set of internal instructions that SAS uses for
writing to and reading from files in a library.
12 Chapter 2 • Basic Concepts
You can define SAS libraries using programming statements. For information about how
to write LIBNAME statements to define SAS libraries, see Assigning Librefs on page
25.
TIP Depending on your operating environment and the SAS/ACCESS products that
you license, you can create libraries with various engines. Each engine enables you
to read a different file format, including file formats from other software vendors.
When you delete a SAS library, the pointer to the library is deleted, and SAS no longer
has access to the library. However, the contents of the library still exist in your operating
environment.
Temporary SAS libraries last only for the If you do not specify a library name when you
current SAS session. create a file, the file is stored in the temporary
SAS library, Work. If you specify the library
name Work, then the file is stored in the
temporary SAS library. When you end the
session, the temporary library and all of its
files are deleted.
Referencing SAS Files 13
Permanent SAS libraries are available to you To store files permanently in a SAS library,
during subsequent SAS sessions. specify a library name other than the default
library name Work.
In the example, when you specify the library
name Cert when you create a file, you are
specifying that the file is to be stored in a
permanent SAS library.
A white cross has been raised in this field, where twenty-five stakes
are planted with the faggots piled under each, and a mob of morbid
sightseers surges, impatient to have the spectacle begin.
Six mortal hours, Orozco informs us, were consumed in that ghastly
business,142 for the Court of the Holy Office must in all things
proceed with stately and pompous leisureliness, with that calm
equanimity enjoined by the “Directorium”—simpliciter et de plano—
lest by haste it should fall into the unpardonable offence of
irregularity.
Not until noon did the proceedings conclude with the hurrying away
to La Dehesa of the last of those twenty-five.
The accused on this occasion were only two, but they were two
clerics. One was the parish priest of Talavera; the other occupied the
distinguished position of a royal chaplain. Both had been found guilty
of Judaizing. They were conducted to the Auto in full canonicals, as
if about to celebrate Mass, each carrying his veiled chalice. Led to
the scaffold of the condemned, they found themselves confronted
from the other scaffold not only by the inquisitors and their
attendants and familiars, but further by the Bishop, who was
attended by two Jeronymites—the Abbot of the Convent of St.
Bernard and the Prior of the Convent of Sisla.
The notary of the Holy Office read out the crimes of the accused,
and pronounced them cast out from the Church. Thereupon each
was brought in turn before the Bishop, who proceeded to degrade
him, since the law could not without sacrilege lay violent hands upon
an ecclesiastic.
In the Auto of May 7 fourteen men and nine women were burnt.
Amongst the former was a Canon of Toledo who was accused of
horrible heresies, and who, writes Orozco, had confessed under
torture to abominable subversions of the words of the Mass. Instead
of the prescribed formula of the consecration, he had stated that he
was in the habit of uttering the absurd and almost meaningless
gibberish—“Sus Periquete, que mira la gente.”
To this dummy of straw the detailed account of his crimes and the
sentence of the court whereby he was condemned as a heretic were
solemnly read out. When all the condemnations had thus been
proclaimed, the effigies were flung into a bonfire that had been
kindled in the square; and together with the effigies went the bones
of the deceased, which had been exhumed to that end.
After that the next Auto of importance was held on July 25, 1488,
when twenty men and seventeen women were sent to the stake,
with a supplementary Auto upon the morrow in which they burnt the
effigies of over a hundred dead and fugitive heretics.
Numerous now and vehement were the protests against the terrible
and excessive rigour of Torquemada. Already, upon the death of
Pope Sixtus IV, a vigorous attempt had been made by some
Spaniards of eminence to procure the deposition of the Prior of Holy
Cross from the office of Grand Inquisitor. It was argued that as his
appointment had been made by Sixtus, so it was automatically
determined by that Pope’s decease. But whatever hopes may have
been founded upon such an argument were very quickly overthrown.
Innocent VIII, as we have already seen, not only confirmed
Torquemada in his office, but considerably increased his powers and
the scope of his jurisdiction.
Indeed, not only was he given jurisdiction over all the Spains, but
Innocent’s bull of April 3, 1487, motu proprio, commanded all
Catholic princes that, upon being requested by the Grand Inquisitor
so to do, they should arrest any fugitives he might indicate and send
them captive to the Inquisition under pain of excommunication.145
That such a bull should have been solicited gives us yet another
glimpse of the terrible rancour against the Jews which fanaticism
had kindled in the soul of Torquemada. Had his aim been merely, as
expressed, to weed the tares of heresy from the Catholic soil of
Spain, the self-imposed exile of those wretched fugitives would fully
have satisfied him, and he would not have thought it necessary to
hound them out of such shelter as they had found abroad that he
might have the satisfaction of hurling them into the bonfire he had
kindled.
The answer, crafty and sophistical as it was, did not suffice to silence
the protests. Clamorously these continued, and the Pope, unable to
turn a deaf ear upon them, fearful lest a scandal should ensue,
effected a sort of compromise. With the royal concurrence, Innocent
VIII issued several bulls, each commanding the Catholic Sovereigns
to admit fifty persons to secret absolution with immunity from
punishment. These secret absolutions were purchased at a high
price, and they were granted upon the condition that in the event of
the re-Judaizing of a person so absolved, he would be treated as
relapsed, the secret absolution being then published.
Meanwhile, with the power that was vested in him, Torquemada was
amassing great wealth from the proportion of the confiscations that
fell to his share. But whatever his faults may have been, he was
perfectly consistent in them, just as he was perfectly, terribly
sincere.
Into the sin of pride he may have fallen. We see signs of it. And,
indeed, it is difficult to conceive of a man climbing from the
obscurity of the monastic cell to the fierce glare of his despotic
eminence and remaining humble at heart. Humble he did remain;
but with that aggressive humility which is one of pride’s worst forms
and akin to self-righteousness—the sin most dreaded by those who
strive after sanctity.
He employed the riches which his office brought him entirely to the
greater honour and glory of the religion which he served with such
terrible zeal. He spent it lavishly upon such works as the rebuilding
of the Dominican Convent of Segovia, together with the contiguous
church and offices. He built the principal church of his family’s native
town of Torquemada and half of the great bridge over the River
Pisuerga.152
Fidel Fita quotes an interesting letter of Torquemada’s, dated August
17, 1490, in which he thanks the gentry of Torquemada for having
sent him a sumpter-mule, but rather seems to rebuke the gift.
“To me,” he writes, “it was not, nor is necessary to send such things;
and it is certain that I should have sent back the gift but that it
might have offended you; for I, praised be our Lord, possess nine
sumpter-mules, which suffice me.”153
In sending the gift they had asked him for assistance towards the
work being carried out in the church of Santa Ollala, the contribution
he had already made not having proved sufficient. He replies
regretting that he can do nothing at the moment, as he is not with
the Court, but promises that upon his return thither he will do the
necessary with the Sovereigns so as to be able to send them the
further funds they require.154
But this point of view, which satisfied the Roman See, did not at all
satisfy the Prior of Holy Cross. His bitter, fanatical hatred of the
Israelites—almost rivalling that of the Dean of Ecija in the fourteenth
century—urged him to violate this poor remnant of equity, drove him
to overstep the last boundary of apparent justice, and carry the
religious war into the region of complete and terrible intolerance.
Such, for instance, was the outrage upon the crucifix at Casar de
Palomero in 1488.
On Holy Thursday of that year, in this village of the diocese of Coria,
several Jews, instead of being at home with closed doors at such a
season, as the Christian law demanded, were making merry in an
orchard, to the great scandal of a man named Juan Caletrido, who
there detected them.
Smarting under this indignity—for, when all is said, they had been
more or less private in their orchard, and they had intended no
offence by their slight evasion of the strict letter of the law—they
related the event to other members of the synagogue, including the
Rabbi.
From what ensued it seems plain that they must there and then
have determined to avenge the honour of their race, which they
conceived had been affronted.
But it is far more likely that, to spite these Christians who had added
this insult to the constant humiliations they were putting upon the
Israelites, the latter should simply have resolved to smash one of the
public symbols of Christianity. The details of what took place do not
justify the supposition that their intentions went any deeper.
On the morrow, which was Good Friday, the circumstance of the day
contributing perhaps to the more popular version of the story, whilst
the Christians were in church for the service of the Passion, a party
of Jews repaired to an open space known as Puerto del Gamo,
where stood a large wooden crucifix. This image they shattered and
overthrew.
All those who took part in the sacrilege suffered confiscation of their
property, whilst the pieces of the crucifix, which had become
peculiarly sanctified by the affair, were gathered up and conveyed to
the Church of Casar, where, upon being repaired, the image was
given the place of honour.160
Until some thirty years ago all our knowledge of the affair was
derived from the rather vague “Testimonio” preserved in the
sanctuary of the martyred child, and a little history of the “Santo
Niño,” by Martinez Moreno, published in Madrid in 1786. This last—
like Lope da Vega’s drama upon the same subject—was based upon
a “Memoria” prepared by Damiano de Vegas of La Guardia in 1544,
at a time when people were still living who remembered the
incident, including the brother of a sacristan who was implicated in
the affair.161
A good deal still remains unexplained, and must so remain until the
records of the trials of the other accused are brought to light. It may
perhaps be well to suspend a final judgment until then. Meanwhile,
however, a survey of the discovered record should incline us to the
opinion that, if the story is an invention, it is one for which those
who were accused of the crime are responsible—an unlikely
contingency, as we shall hope to show—and in no case can the
inventor have been Frey Tomás de Torquemada.
CHAPTER XIX
THE LEGEND OF THE SANTO NIÑO
This mixture of fact and fiction sets forth how a party of Jews from
the townships of Quintana, Tenbleque, and La Guardia, having
witnessed an Auto de Fé in Toledo, were so filled with rage and fury,
not only against the Holy Tribunal, but against all Christians in
general, that they conspired together to encompass a complete
annihilation of the Faithful.
The story is worth repeating for the sake of the light it throws upon
the credulity of the simple folk of Spain in such matters, a credulity
which in remote districts of the peninsula is almost as vigorous to-
day as it was in Moreno’s century.
The warlocks, in that earlier instance of which Benito had
knowledge, were alleged to be a party of Jews who had fled from
Spain on the first institution of the Inquisition in Seville in 1482.
They had repaired to France bent upon the destruction of all
Christians, to the end that the Children of Israel might become lords
of the land, and that the Law of Moses might prevail. For the sorcery
to which they proposed to resort they required a consecrated wafer
and the heart of a Christian child. These were to be reduced to
ashes to the accompaniment of certain incantations, and scattered in
the rivers of the country, with the result that all Christians who drank
the waters must go mad and die.
Armed with his full knowledge of what had happened, Benito now
proposed to his friends that they should have recourse to the same
enchantment in Spain, making sure, however, that the heart
employed was that of a Christian boy. He promised them that by this
means, not only the inquisitors, but all the Christians would be
destroyed, and the Israelites would remain undisputed lords of
Spain.
+ EXURGE DOMINE ET JUDICA CAUSAM TUAM. PSALM
73.
Amongst those who joined him in the plot was a man named Juan
Franco, of a family of carriers of La Guardia. This man went with
Benito to Toledo on the Feast of the Assumption, intent upon finding
a child for their purpose. They drove there in a cart, which they left
outside the city while they went separately about their quest.
Franco found what he sought in one of the doorways of the
Cathedral, known as the Puerta del Perdon—the door, adds Moreno,
through which the Virgin entered the church when she came from
heaven to honour with the chasuble her votary St. Ildefonso. The
Jew beheld in this doorway a very beautiful child of three or four
years of age, the son of Alonso de Pasamontes. His mother was near
at hand, but she was conveniently blind—i.e. conveniently for the
development of Moreno’s story, this blindness serving not only the
purpose of rendering the child’s undetected abduction easily
possible, but also that of affording the martyred infant scope for the
first miraculous manifestation of his sanctity.
Juan Franco lured the boy away with the offer of sweetmeats. He
regained his cart with his victim, concealed the latter therein, and so
returned to La Guardia. There he kept the child closely and safely
until Passion Week of the following year, or, rather, until the season
of the Passover, when the eleven Jews—six of whom had received
Christian baptism—assembled in La Guardia. They took the child by
night to a cave in the hills above the river, and there they compelled
him to play the protagonist part in a detailed parody of the Passion,
scourging him, crowning him with thorns, and finally nailing him to a
cross.
To this the boy replied that he was crying because he had received
five lashes more than his Divine Master.
“So that,” says this doctor of divinity quite soberly, “if the lashes
received by Christ numbered 5,495, as computed by Lodulfo
Cartujano in his ‘In Vita Christi,’ those received by the Holy Child
Christoval were 5,500.”162
When he was crucified, his side was opened by one of the Jews,
who began to rummage163 for the child’s heart. He failed to find it,
and he was suddenly checked by the child’s question—“What do you
seek, Jew? If you seek my heart, you are in error to seek it on that
side; seek on the other, and you will find it.”
In the very moment of his death, Moreno tells us, the Santo Niño
performed his first miracle. His mother, who had been blind from
birth, received the gift of sight in the instant that her child
expired.164
A good Christian kneeling some little way behind him was startled to
see a resplendent effluence of light from the book. Naturally he
concluded that he was in the presence of a miracle, and that this
stranger was some very holy man. Filled with reverent interest, he
followed the Jew to the inn where he was lodged, and then went
straight to the father inquisitors to inform them of the portent he
had witnessed, that they might investigate it.
The inquisitors sent their familiars to find the man, and at sight of
them Benito fell into terror, “so that his very face manifested how
great was his crime.” He was at once arrested, and taken before the
inquisitors for examination. There he immediately confessed the
whole affair.
“They went on together, and arrived after nightfall at the said cave,
whither came, as was arranged, the brother of the New-Christian,
and with him other newly-converted Jews, with whom it appears
that the aforesaid matter had been treated.
“A few days later the said Jew and New-Christians met again in the
cave and attempted certain enchantments and conjurations with the
heart of the child and a consecrated Host obtained through a
sacristan who was a New-Christian. This conjuration and experiment
they performed with the intention that the inquisitors of heretical
pravity and all other Christians should enrage and die raging
(rabiendo), and the Law of Jesus Christ our Redeemer should be
entirely destroyed and superseded by the Law of Moses.
“When they saw that the said experiment did not operate nor had
the result they hoped, they assembled again elsewhere, and having
treated of all that they desired to effect, by common consent one of
them was sent with the heart of the said child and the consecrated
Host to the Aljama of Zamora, which they accounted the principal
Aljama in Castile, to the end that certain Jews there, known to be
wise men, should with the said heart and Host perform the said
experiment and sorcery that the Christians might enrage and die,
and thus accomplish what they so ardently desired.
“The said ‘Testimonio’ written upon three sheets bearing our rubrics,
we the said secretaries deliver by request of the Procurator-General
of the village of La Guardia, by order of the Very Illustrious Señores
of His Majesty’s Council of the Holy Inquisition in the City of Madrid
in the Diocese of Toledo, on the 19th day of September of the year
of the birth of our Lord Jesus Christ, 1569.
But the records of the trial of Yucé Franco discovered by Fidel Fita
throw a very different light upon the matter. And whilst we know
that Torquemada did avail himself to the utmost of this affair of the
Santo Niño to encompass the banishment of the Jews from Spain,
we must consider all notion that he himself simply invented the story
to that end as completely dispelled by the evidence that is now to be
examined.
From the records of the trial of Yucé Franco we are to-day not only
able very largely to reconstruct the event, but also to present a
complete instance of the application of the jurisprudence of the
Inquisition. Indeed, had the archives of the Holy Office been
ransacked for an entirely typical prosecution, embodying all the
features peculiar to that terrible court, no better instance than this
could have been forthcoming.
CHAPTER XX
THE ARREST OF YUCÉ FRANCO
Villada received the wafer, heard the accusation, and took a short
way with Benito when the latter refused to explain himself. He
ordered him two hundred lashes, and finding the man still obdurate
after this punishment, he submitted him to the water-torture. Under
this the wretched fellow at last betrayed himself. Of precisely what
he said we have no record taken at the time; but we have his own
word for it—as reported afterwards by Yucé Franco to whom he
uttered it—that “he had said more than he knew, and enough to
burn him.”168
But it would seem that when first taken in the toils of the Inquisition,
and having experienced in his own person the horrors of its
methods, he realizes the sweetness of life, and eagerly avails himself
of the false loophole so alluringly exposed by the reverend doctor.
Ça’s other son, Mosé, was either dead at the time or else he died
very shortly after arrest and before being brought to trial.
They were taken to Segovia, and thrown into the prison of the Holy
Office in that city. In this prison Yucé Franco fell so seriously ill that
he believed himself at the point of death.