| Date: | Wed, 13 Aug 2008 09:58:02 -0400 |
| Reply-To: | "Fehd, Ronald J. (CDC/CCHIS/NCPHI)" <rjf2@CDC.GOV> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | "Fehd, Ronald J. (CDC/CCHIS/NCPHI)" <rjf2@CDC.GOV> |
| Subject: | Re: v9.2 ERROR: Unable to load the Java Virtual Machine |
| In-Reply-To: | <482249F865060740AE33815802042D2F01643E15@LTA3VS012.ees.hhs.gov> |
| Content-Type: | text/plain; charset=us-ascii |
paper:
http://www2.sas.com/proceedings/sugi30/111-30.pdf
Iris Data
http://support.sas.com/kb/25/601.html
http://support.sas.com/documentation/cdl/en/imlug/59656/HTML/default/gra
phstart_sect13.htm
The flower:
http://www.badbear.com/signa/signa.pl?Iris-setosa
program which demonstrates the problem:
*------------------- Data on Iris Setosa --------------------*
| The data set contains 50 iris specimens from the species |
| Iris Setosa with the following four measurements: |
| SepalLength (sepal length) |
| SepalWidth (sepal width) |
| PetalLength (petal length) |
| PetalWidth (petal width) |
| Certain values were changed to missing for the analysis. |
*------------------------------------------------------------*;
data Setosa;
label sepallength = 'Sepal Length in mm.'
sepalwidth = 'Sepal Width in mm.'
petallength = 'Petal Length in mm.'
petalwidth = 'Petal Width in mm.';
input SepalLength SepalWidth PetalLength PetalWidth @@;
datalines;
50 33 14 02 46 34 14 03 46 36 . 02
51 33 17 05 55 35 13 02 48 31 16 02
52 34 14 02 49 36 14 01 44 32 13 02
50 35 16 06 44 30 13 02 47 32 16 02
48 30 14 03 51 38 16 02 48 34 19 02
50 30 16 02 50 32 12 02 43 30 11 .
58 40 12 02 51 38 19 04 49 30 14 02
51 35 14 02 50 34 16 04 46 32 14 02
57 44 15 04 50 36 14 02 54 34 15 04
52 41 15 . 55 42 14 02 49 31 15 02
54 39 17 04 50 34 15 02 44 29 14 02
47 32 13 02 46 31 15 02 51 34 15 02
50 35 13 03 49 31 15 01 54 37 15 02
54 39 13 04 51 35 14 03 48 34 16 02
48 30 14 01 45 23 13 03 57 38 17 03
51 38 15 03 54 34 17 02 51 37 15 04
52 35 15 02 53 37 15 02
;
ods html style=statdoc;
ods graphics on;
title 'Fisher (1936) Iris Setosa Data';
PROC Corr data = Setosa
sscp cov plots;
var sepallength sepalwidth;
with petallength petalwidth;
run;
ods graphics off;
ods html close;
- - - *.log - - -
39 title 'Fisher (1936) Iris Setosa Data';
40 proc corr data=Setosa sscp cov plots;
41 var sepallength sepalwidth;
42 with petallength petalwidth;
43 run;
ERROR: Unable to load the Java Virtual Machine. Please see the
installation instructions or system administrator.
NOTE: The SAS System stopped processing this step because of errors.
|