gpt4 book ai didi

google-sheets - 如何在 SPSS 中处理(Google 表单 - 电子表格) "Checkboxes"答案

转载 作者:行者123 更新时间:2023-12-04 12:56:41 25 4
gpt4 key购买 nike

我正在分析我使用 Google 表单进行的电子调查,但遇到以下问题。

如下图所示,其中一个问题可以以复选框的形式采取多个答案。这个问题是希腊语的,所以我在每个答案旁边添加了一些 Choice1、Choice2、Choice3 等,以便于我的问题。

enter image description here

在我的数据中,当有人选择 Choice1 和 Choice2 时,我会得到一个答案,这是他检查的字符串的串联,用逗号分隔。

在这种情况下,它将是:

Choice1, Choice2

如果别人勾选了Choice1、Choice2和Choice4他在我的数据中的回答是:

Choice1, Choice2, Choice4

问题是 SPSS 无法分隔子字符串(以逗号分隔),也无法理解每种情况的共同选择。或者也许有办法,但我不知道:)

例如,当我对这个问题做一个简单的频率分析时,它会生成一个可以感知的表格

Choice1, Choice2

完全不同于

Choice1, Choice2, Choice4

理想情况下,我想以某种方式告诉 SPSS 计算每个唯一选择(选择 1、选择 2、选择 3 等)的频率,而不是计算这些选择的每个独特组合。那可能吗?如果可以,您能否指出我需要研究的文档以实现它?

非常感谢!

最佳答案

假设您正在处理以下数据,这是您从在线表单下载的 CSV 文件。复制并粘贴以下文本并将其保存到名为“CourseInterestSurvey.CSV”的文本文件中。

Timestamp,Which courses are you interested in?,What software do you use?
12/28/2012 11:57:56,"Research Methods, Data Visualization","Gnumeric, SPSS, R"
12/28/2012 11:58:09,Data Visualization,"SPSS, Stata, R"
12/28/2012 11:59:09,"Research Dissemination, Graphic Design",Adobe InDesign
12/28/2012 11:59:27,"Data Analysis, Data Visualization, Graphic Design","Excel, OpenOffice.org/Libre Office, Stata"
12/28/2012 11:59:44,Data Visualization,"R, Adobe Illustrator"

使用以下语法将其读入 SPSS:

GET DATA
/TYPE=TXT
/FILE="path\to\CourseInterestSurvey.CSV"
/DELCASE=LINE
/DELIMITERS=","
/QUALIFIER='"'
/ARRANGEMENT=DELIMITED
/FIRSTCASE=2
/IMPORTCASE=ALL
/VARIABLES=
Timestamp A19
CourseInterest A49
Software A41.
CACHE.
EXECUTE.
DATASET NAME DataSet2 WINDOW=FRONT.
LIST.

目前看起来像下图——三列(一个时间戳,两列我们想要的数据):

enter image description here

使用 here 中的一些语法,我们可以按如下方式拆分单元格:

* We know the string does not excede 50 characters.
* We got that information while we were reading our data in.
STRING #temp(a50).
* We're going to work on the "CourseInterest" variable.
COMPUTE #temp=CourseInterest.
* We're going to create 3 new variables with the prefix "CourseInterest".
* You should modify this according to the actual number of options your data has
* and the maximum length of one of the strings in your data.
VECTOR CourseInterest(3, a25).
* Here's where the actual variable creation takes place.
LOOP #i = 1 TO 3.
. COMPUTE #index=index(#temp,",").
. DO IF #index GT 0.
. COMPUTE CourseInterest(#i)=LTRIM(substr(#temp,1, #index-1)).
. COMPUTE #temp=substr(#temp, #index+1).
. ELSE.
. COMPUTE CourseInterest(#i)=LTRIM(#temp).
. COMPUTE #temp=''.
. END IF.
END LOOP IF #index EQ 0.
LIST.

结果:

enter image description here

这一次只能处理一列,我还不够熟悉,无法修改它以处理多列。但是,如果您要切换到 R,我已经有一些 readymade functions 可以帮助处理这些情况。

关于google-sheets - 如何在 SPSS 中处理(Google 表单 - 电子表格) "Checkboxes"答案,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14057558/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com