Re: Stop Button

classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

Re: Stop Button

Janet dozier
Is there a "interupt" button or "kill switch" key combo that will stop the execution of an SPSS program?

Thanks
bob dozier

=====================
To manage your subscription to SPSSX-L, send a message to
[hidden email] (not to SPSSX-L), with no body text except the
command. To leave the list, send the command
SIGNOFF SPSSX-L
For a list of commands to manage subscriptions, send the command
INFO REFCARD
Reply | Threaded
Open this post in threaded view
|

Re: Stop Button

David Wasserman
Ctrl-period (or Ctrl-full stop in British English, which makes perfect sense
in this case.)

-----Original Message-----
From: SPSSX(r) Discussion [mailto:[hidden email]] On Behalf Of
Janet dozier
Sent: May-06-08 5:10 PM
To: [hidden email]
Subject: Re: Stop Button

Is there a "interupt" button or "kill switch" key combo that will stop the
execution of an SPSS program?

Thanks
bob dozier

=====================
To manage your subscription to SPSSX-L, send a message to
[hidden email] (not to SPSSX-L), with no body text except the
command. To leave the list, send the command
SIGNOFF SPSSX-L
For a list of commands to manage subscriptions, send the command
INFO REFCARD

=====================
To manage your subscription to SPSSX-L, send a message to
[hidden email] (not to SPSSX-L), with no body text except the
command. To leave the list, send the command
SIGNOFF SPSSX-L
For a list of commands to manage subscriptions, send the command
INFO REFCARD
Reply | Threaded
Open this post in threaded view
|

Absolute value or

Lombardo, Barbara
Greetings,  Would someone tell me how to do an absolute value in SPSS.
I have a set of numbers that I have imported numbers that have an
embedded comma.  Spss makes them missing as a numeric.

2,155.00
2,155.00
1,080.00
1,830.00
1,030.00
2,155.00
1,130.00

Thanks

=====================
To manage your subscription to SPSSX-L, send a message to
[hidden email] (not to SPSSX-L), with no body text except the
command. To leave the list, send the command
SIGNOFF SPSSX-L
For a list of commands to manage subscriptions, send the command
INFO REFCARD
Reply | Threaded
Open this post in threaded view
|

Re: Absolute value or

Art Kendall
open a clean instance of SPSS.
Copy the syntax below and paste it into a syntax window.

click <run> <all>.
If this is not what you want please explain in more detail, perhaps
making up a set of data with 2 columns: what you have and what you want.


data list list /myvar (comma8.2).
begin data
2,155.00
2,155.00
1,080.00
1,830.00
1,030.00
2,155.00
1,130.00
-2,155.00
-2,155.00
-1,080.00
-1,830.00
-1,030.00
-2,155.00
-1,130.00
end data.
compute myabsvar= abs(myvar).
LIST .


Art Kendall
Social Research Consultants

Lombardo, Barbara wrote:

> Greetings,  Would someone tell me how to do an absolute value in SPSS.
> I have a set of numbers that I have imported numbers that have an
> embedded comma.  Spss makes them missing as a numeric.
>
> 2,155.00
> 2,155.00
> 1,080.00
> 1,830.00
> 1,030.00
> 2,155.00
> 1,130.00
>
> Thanks
>
> =====================
> To manage your subscription to SPSSX-L, send a message to
> [hidden email] (not to SPSSX-L), with no body text except the
> command. To leave the list, send the command
> SIGNOFF SPSSX-L
> For a list of commands to manage subscriptions, send the command
> INFO REFCARD
>
>
>

=====================
To manage your subscription to SPSSX-L, send a message to
[hidden email] (not to SPSSX-L), with no body text except the
command. To leave the list, send the command
SIGNOFF SPSSX-L
For a list of commands to manage subscriptions, send the command
INFO REFCARD
Art Kendall
Social Research Consultants