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

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

PSPP-BUG: Assertion failed


From: Frans Houweling
Subject: PSPP-BUG: Assertion failed
Date: Tue, 5 Jan 2016 21:26:33 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.5.0


pspp$ pspp -o prova2out.html assertionFailed.sps
pspp: src/data/variable.c:448: var_set_value_labels_quiet: asserzione "val_labs_can_set_width (vls, v->width)" non riuscita.
******************************************************
You have discovered a bug in PSPP.  Please report this
to address@hidden  Please include this entire
message, *plus* several lines of output just above it.
For the best chance at having the bug fixed, also
include the syntax file that triggered it and a sample
of any data file used for input.
proximate cause:     Assertion Failure/Abort
version:             GNU pspp 0.8.2 (Sat Dec 13 18:31:02 UTC 2014).
host_system:         x86_64-slackware-linux-gnu
build_system:        x86_64-slackware-linux-gnu
locale_dir:          /usr/share/locale
compiler version:    4.8.2
******************************************************
Annullato
pspp$

Greetings
frans

Attachment: assertionFailed.sps
Description: Text document

SET

SET PRINTBACK=ON

DATA LIST

DATA LIST LIST /recID (F5.0) country (A20) pop (F9.0) rank (F1.0) segment (F1.0).
Reading free-form data from INLINE.
Variable Format
recID F5.0
country A20
pop F9.0
rank F1.0
segment F1.0

BEGIN DATA

BEGIN DATA
1 Germany 81 1 1
2 Netherlands 17 4 2
3 Italy 61 3 2
4 France 66 2 1
END DATA.

COMPUTE

COMPUTE everybody = 1.

AUTORECODE

AUTORECODE VARIABLES = country INTO nation.

DATASET COPY

DATASET COPY AGGSUB_WORK.

DATASET DECLARE

DATASET DECLARE AGG_1.

DATASET ACTIVATE

DATASET ACTIVATE AGGSUB_WORK.

AGGREGATE

AGGREGATE OUTFILE=AGG_1 /BREAK = everybody segment
   /pop rank= MEAN(pop rank)
  /N_pop = N(pop)
/N_rank = N(rank)
  /NU_pop = NU(pop)
/NU_rank = NU(rank)
.

DATASET DECLARE

DATASET DECLARE AGG_2.

DATASET ACTIVATE

DATASET ACTIVATE AGGSUB_WORK.

AGGREGATE

AGGREGATE OUTFILE=AGG_2 /BREAK = everybody nation
   /pop rank= MEAN(pop rank)
  /N_pop = N(pop)
/N_rank = N(rank)
  /NU_pop = NU(pop)
/NU_rank = NU(rank)
.

DATASET ACTIVATE

DATASET ACTIVATE AGG_1.

ADD FILES

ADD FILES FILE=* /FILE=AGG_2.

DATASET CLOSE

DATASET CLOSE AGG_2.
.

MATCH FILES

MATCH FILES FILE=* /KEEP=everybody segment nation pop rank ALL.

SELECT IF

SELECT IF NOT MISSING(segment)
OR NOT MISSING(nation)
.

SORT CASES

SORT CASES BY everybody segment nation.

APPLY DICTIONARY


reply via email to

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