-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinitial_ihr_analysis.py
90 lines (77 loc) · 2.74 KB
/
initial_ihr_analysis.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# Scratch file for doing specific queries on 'ihr' responses.
# import the eXceL ReaDing library
import xlrd
# Open up the proper sheet within the proper excel file.
wb = xlrd.open_workbook('Anredepronomen-data.xls')
sh = wb.sheet_by_name(u'Anredepronomen_im_Alltag')
# Store a list of all the question texts.
questions = sh.row_values(1)
# Find the column number for the question
# with the word "vermieden" in it.
# Note: this is example code, it's not meant
# to be efficient, beautiful, etc. It's meant
# to be very, very easily understandable.
counter = 0
for question in questions:
if "vermieden" in question:
correct_counter = counter
else:
counter += 1
# At the end of running this block of code,
# correct_counter holds the (single/last)
# column number of the question with the text
# "vermieden" in it.
# Find the column numbers for the questions
# with the word "individuell" in them.
# Note: this overwrites a lot of things
# that the previous code block did.
# Note: again, not meant to be elegant or
# efficient code, but rather meant to be
# easily understandable.
# make a counter and a place to store the column numbers
counter = 0
individuell_question_columns = []
# for each question...
for question in questions:
# check if the word "individuell" is in it.
if "individuell" in question:
# if yes, add it to the list...
individuell_question_columns += [counter]
# ...and increment the counter.
counter += 1
# otherwise,
else:
# just increment the counter.
counter += 1
# show us the list of column numbers for questions
# that have the word "individuell" in them.
# print individuell_question_columns
# print sh.row_values(1)[52]
# now print all the questions with the word
# "individuell" in them, to make sure we got the list
# right.
# for question in individuell_question_columns:
# print sh.row_values(1)[question]
# which of the questions with "individuell" in them
# have at least one "ihr" response?
# (ihr = 2.0 in the excel spreadsheet)
# make a place to store the answers
individuell_questions_with_ihr = []
# for every question with "individuell" in it
for question in individuell_question_columns:
print "now checking question #",
print question
# for each answer to that question
for answer in sh.col_values(question):
# if the answer is "ihr"
if answer == 2.0:
print "we have an ihr!"
# store that question's column number
individuell_questions_with_ihr += [question]
# and stop looking at that question.
break
# otherwise,
# we don't give a shit.
# and show us.
print "individuell_questions_with_ihr - ",
print individuell_questions_with_ihr