Tagged Questions
1
vote
1answer
27 views
How to read a .sav SPSS file in in R?
I've tried read.spps(), but I get an encoding error:
> library(foreign)
> read.spss('persona.sav')
re-encoding from CP1252
Error in iconv(names(rval), cp, "") :
unsupported conversion from ...
0
votes
1answer
39 views
How do I incorporate dummy's in R?
I made several dummy variables in SPSS and was wondering if I could use the same ones in R? Is there any special code you need to put before the variables (like factor(...) for categorical) or can you ...
4
votes
0answers
68 views
How do I perform a Mixed model analysis on my data in SPSS?
In my thesis I'm trying to discover which factors influence the CSR (corporate social responsibility, GSE_RAW) behavior of companies. Two groups of possible factors / variables have been identified: ...
0
votes
0answers
31 views
Fitting ARMAX model in SPSS and interpreting results
I'm very new at using SPSS for time series analysis. I would like to fit ARMAX-model using SPSS's forecasting tool. Could someone show me how to do this right? Does anyone know a short tutorial or ...
0
votes
1answer
28 views
How can I set “999” as the DEFAULT missing value in SPSS/PASW?
I'm importing a very large dataset into SPSS. Many fields in the dataset contain a "999" value, indicating a missing value. I want to instruct SPSS to view them as such. However, default each variable ...
-6
votes
1answer
98 views
In SPSS, how do I do a bunch of regression analyses by looping through independent variables by their label variables? Is it easier in R? [duplicate]
Here's an example of my dataset in comma-delimited form (with variable names in the top row)...
LABEL,X,Y
bimmy,1,2
bimmy,2,4
bimmy,3,6
jimmy,2,8
jimmy,5,4
jimmy,6,10
marian,3,10
marian,4,9
...
0
votes
1answer
32 views
Is it possible to loop this syntax
I have been trying for some time to loop the following sytanx say 10 times.
COMPUTE tempvar=UNIFORM(10).
SORT CASES BY behaviour_code tempvar (A).
SPLIT FILE BY behaviour_code.
COMPUTE tempvar=1.
...
1
vote
3answers
159 views
Is there a Python module to open SPSS files?
Is there a module for Python to open IBM SPSS (i.e. .sav) files? It would be great if there's something up-to-date which doesn't require any additional dll files/libraries.
0
votes
0answers
94 views
How to selectively output ttest results with P value less than 0.05 in SPSS and STATA
Does anybody know how to output/report the paired ttest results only (selectively) with Sig. <0.05, using SPSS or STATA syntax? Thank you
-2
votes
1answer
231 views
how to build a null distribution [closed]
1:I would like to create a synthetic dataset of 14.000 genes (rows) and 250 samples (columns of the matrix).
How this can be done?
2: after this, I would like to infer gene regulation using for ...
2
votes
0answers
227 views
SPSS: 2 sample t-test: real data against group with M=0 and SD=1? [closed]
we want to use SPSS to compare two groups (2 sample t-test, independent samples). The first group contains real data, the other group is fictional. This fictional group should contain as many ...
2
votes
3answers
747 views
weight data with R Part II
Given is the following data frame:
structure(list(UH6401 = c(1, 1, 0, 0, 0, 1, 1, 0, 1, 0, 1, 1,
1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 1, ...
0
votes
1answer
310 views
SPSS logistic regression
I'm wondering if there is a way to get many single covariate logistic regression. I want to do it for all my variables because of the missing values. I wanted to have a multiple logistic regression ...
0
votes
1answer
1k views
R Box'M test for homocedasticity
I'm trying to replicate a linear discriminant analysis output from SPSS in R, and I'm having difficulties to find a way to perform an m-box test.
The only thing I found was some code posted in a ...
1
vote
1answer
86 views
linking info of pairs of respondents (couples) in SPSS
I am preparing for analyses of the determinants of partner choice in SPSS, but basically I can't get off the ground because I don't know how to create new variables based on the information of each ...
2
votes
6answers
10k views
How can I loop through variables in SPSS? I want to avoid code duplication
Is there a "native" SPSS way to loop through some variable names? All I want to do is take a list of variables (that I define) and run the same procedure for them:
pseudo-code - not really a good ...
1
vote
1answer
2k views
statistical cosinor analysis,
Hey i am trying to calculate a cosinor analysis in statistica but am at a loss as to how to do so. I need to calculate the MESOR, AMPLITUDE, and ACROPHASE of ciracadian rhythm data.
...
2
votes
2answers
607 views
SPSS - sum of squares change radically with slight model changes in ANOVA?
I have noticed that the sum of squares in my models can change fairly radically with even the slightest adjustment to my models???? Is this normal???? I'm using SPSS 16, and both models presented ...
1
vote
3answers
1k views
How do you detect outliers on multivariate data? [closed]
See: What is the best way to identify outliers in multivariate data?
I am trying to do a regression problem but I have 3 independent variables and not 1 so it is hard to detect outliers from a ...
0
votes
1answer
1k views
Is Linear Regression the same thing as Ordinary Least Squares Regression in SPSS?
I want to do a linear regression but I want to use Ordinary Least Squares which I think it is a type of Linear regression.. The software I use is SPSS and it only has linear regression, partial least ...
0
votes
1answer
3k views
3-way CROSSTABS in SPSS
I have some data in SPSS that I would like to format in a particular way, but I can't seem to find a way to do it in the documentation.
I have data that consists of 10 question responses, Q1 to Q10, ...
4
votes
7answers
8k views
How do I calculate these statistics?
I'm writing an app to help facilitate some research, and part of this involves doing some statistical calculations. Right now, the researchers are using a program called SPSS. Part of the output that ...