bug-gnu-pspp
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: PSPP-BUG: PSPP 0.10.1 x64 Suspected Scatterplot Bug


From: Friedrich Beckmann
Subject: Re: PSPP-BUG: PSPP 0.10.1 x64 Suspected Scatterplot Bug
Date: Wed, 27 Apr 2016 19:44:00 +0200

Hi Ron,

could you run the following syntax file and check what the output is?

NEW FILE.
INPUT PROGRAM.
LOOP #i = 1 to 100.
COMPUTE Age = RV.NORMAL(40,10).
COMPUTE CityNum = TRUNC(UNIFORM(2.95)).
END CASE.
END LOOP.
END FILE.
END INPUT PROGRAM.

COMPUTE Size = Age * 3 + 50 + 50*CityNum.

STRING City (a20).

Recode CityNum 
       (0 = "Madrid")
       (1 = "Paris")
       (ELSE = "Stockholm")
       into City.

 GRAPH
    /SCATTERPLOT(BIVARIATE) = Age WITH Size 

 GRAPH
    /SCATTERPLOT(BIVARIATE) = Age WITH CityNum
 
 GRAPH
    /SCATTERPLOT = CityNum WITH Age

 GRAPH
    /SCATTERPLOT = CityNum WITH Size

 GRAPH
    /SCATTERPLOT(BIVARIATE) = Age WITH Size BY City

 GRAPH
    /SCATTERPLOT(BIVARIATE) = Age WITH Size BY CityNum

 ADD VALUE LABELS 
    /CityNum 1 'Rio' 2 'Tokyo' 0 'Mumbai'.

 GRAPH
    /SCATTERPLOT(BIVARIATE) = Age WITH Size BY CityNum

If you see the graphs via this syntax, could you then create
a scatterplot via the GUI and select Age and Size as variables?

Friedrich

> Am 27.04.2016 um 03:10 schrieb Ron S <address@hidden>:
> 
> Hello,
>  
> I’m running PSPP 0.10.1 2016-04-01 x64 on x64 Windows 10 Home. Scatterplot 
> doesn’t appear to function at all. I select data for each axis, enter OK and 
> a blank scatterplot opens without any data points.
> 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]