spss Questions
8
I want to open spss .sav data files in Excel without opening the spss files (I don't want to convert spss data file into Excel file). I know this is possible using OLDB connection, but I don't know...
9
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.
Impulsive asked 1/2, 2013 at 13:7
4
There is a package foreign with a function write.foreign() that can write a SPS and CSV file. The SPS file than can read the CSV fiel into SPSS including labels. Fine so far, but there are some iss...
3
I am analysing student level data from PISA 2015. The data is available in SPSS format here
I can load the data into R using the read_sav function in the haven package. I need to be able to edit ...
3
I am using Stata for data analysis but had to convert the dataset I am using from SPSS, which includes variable labels, by saving it as a .csv file. However, the variable labels were not exported t...
Disseisin asked 24/4, 2017 at 5:15
3
Solved
I have to read a sav file
I use the package haven
library(haven)
dataset<- read_sav("datafile.sav")
In the console I can see the labels :
dput(head(voyages$portdep))
structure(c(50...
15
I am trying to learn R and want to bring in an SPSS file, which I can open in SPSS.
I have tried using read.spss from foreign and spss.get from Hmisc. Both error messages are the same.
Here is ...
12
Solved
I will be analysing vast amount of network traffic related data shortly, and will pre-process the data in order to analyse it. I have found that R and SPSS are among the most popular tools for stat...
Oshiro asked 24/9, 2010 at 12:54
2
Solved
I want to use a linear regression model, but I want to use ordinary least squares, which I think it is a type of linear regression. The software I use is SPSS. It only has linear regression, partia...
Aureus asked 22/11, 2009 at 21:57
4
Solved
I am new to Python and am hoping that someone could please explain to me what the error message means.
To be specific, I have some code of Python and SPSS combined together saved in Atom, which w...
Goosander asked 28/9, 2016 at 18:40
3
Solved
df1 <-
data.frame(c("male", "female", "male"),
c("1", "2", "3", "4", "5", "6"),
seq(141, 170))
names...
1
Solved
After ROC analysis of a set of data, how to calculate p-value? With the same statistics, I saw that the p-value can be output in SPSS.
The sample code is as follows:
library(pROC)
data(aSAH)
head...
Loreanloredana asked 25/5, 2020 at 7:12
4
Solved
While running an R-plugin in SPSS, I receive a Windows path string as input e.g.
'C:\Users\mhermans\somefile.csv'
I would like to use that path in subsequent R code, but then the slashes need to...
1
I've working on reading an SPSS file (.sav). My code below can read .sav files. However, I've encounter a very strange error. When I try to read another .sav file, it gives the following error
Tra...
5
Solved
At my company, we are thinking of gradually phasing out SPSS in choice of R. During the transition though we'll still be having the data coming in SPSS data file format (.sav).
I'm having issues i...
3
Solved
I am trying to read a .sav file into R but I got the following warning:
library("memisc")
dataset <- data.frame(as.data.set(spss.system.file("dataset.sav")))
parseSysHeader(ptr) : file lack...
2
I have a big CSV file and it comes with two metadata description files. One has a .sas extension and the other a .sps. Opening them, they describe the CSV data format and categories. The files desc...
2
Solved
How do you convert .sav into .csv, or .sav into pandas DataFrame? Is there a direct way or doing this or a package that can do this?
3
Solved
While looking for a R related solution I found some inconsistency between R and SPSS (ver. 24) in computing standardized residuals in a simple linear model.
It appears that what SPSS calls standar...
Derian asked 15/10, 2016 at 18:6
2
Solved
I'm using haven to import a .sav file into R. I wonder how to show value labels rather than numeric codes. In the following example I want to show Species names rather than numbers 1, 2, 3.
libra...
0
There are several questions and answers discussing how to read or write .sav files:
Excel-related (e.g., How to open spss data files in excel?)
PHP-related (e.g., Export data into SPSS file (*.sa...
Lights asked 19/11, 2017 at 11:15
4
Solved
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...
Salangia asked 11/8, 2011 at 13:17
2
Solved
I have not worked with SPSS (.sav) files before and am trying to work with some data files provided to me by importing them into R. I did not receive any explanation of the files, and because commu...
2
Solved
I am flipping my survey data so I can use it in Tableau. Here is example data in SPSS (keep in mind that each variable has value & variable labels).
ID age rate1 rate2 rate3 mr_1 mr_2 mr_3 ......
Sassan asked 20/4, 2017 at 15:45
1
Solved
Is there any solution to export data into SPSS (*.sav) files?
I have a web service with surveys, and result needed to be exported to different formats.
I cant find any solution for SPSS.
(in any la...
1 Next >
© 2022 - 2024 — McMap. All rights reserved.