Duplicate values in output table

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

Duplicate values in output table

Jordan Kennedy

SPSS is grouping people with the same value into sub groups. So, for example, there are 39 people with a value of 2.00 but there is also another group of 28 people also with 2.00. What we were confused about was why they would not be lumped together into one group of 67 people.



===================== 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: Duplicate values in output table

Matthias Spörrle-3
(1) Is the grouping variable numeric or string? If it is string, there might be spaces etc. which make them different on ASCI level.
(2) Is the grouping variable numeric, values might be 2.0001 or something else, they look the same on two decimals, but are not.
HTH


On Mon, Jul 2, 2018 at 6:34 PM, Scott Roesch <[hidden email]> wrote:

SPSS is grouping people with the same value into sub groups. So, for example, there are 39 people with a value of 2.00 but there is also another group of 28 people also with 2.00. What we were confused about was why they would not be lumped together into one group of 67 people.



===================== 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
|

Re: Duplicate values in output table

Rick Oliver
A simple example...

data list free /x.
begin data
2 2 2 2 2  2.001 2.001 2.001
end data.
*default display format F8.2).
frequencies variables=x.
*now change display format to display more decimals.
formats x (f8.3).
frequencies variables=x.




On Mon, Jul 2, 2018 at 12:04 PM Matthias Spörrle <[hidden email]> wrote:
(1) Is the grouping variable numeric or string? If it is string, there might be spaces etc. which make them different on ASCI level.
(2) Is the grouping variable numeric, values might be 2.0001 or something else, they look the same on two decimals, but are not.
HTH


On Mon, Jul 2, 2018 at 6:34 PM, Scott Roesch <[hidden email]> wrote:

SPSS is grouping people with the same value into sub groups. So, for example, there are 39 people with a value of 2.00 but there is also another group of 28 people also with 2.00. What we were confused about was why they would not be lumped together into one group of 67 people.



===================== 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
===================== 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