Participant
participant.models:#
Participant
#
Bases: Model
Main participant, base for profile and sessions
Attributes:
Name | Type | Description |
---|---|---|
unique_hash |
str
|
Unique identifier string |
country_code |
str
|
Country code of the participant |
access_info |
str
|
HTTP_USER_AGENT info |
participant_id_url |
str
|
URL code to link an experiment to a participant |
Source code in participant/models.py
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 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
|
export_profiles()
#
Export participant profile result objects
Returns:
Type | Description |
---|---|
QuerySet[Result]
|
All profile results from a participant |
Example
Print all the questions and answers from a participant’s profile results
Source code in participant/models.py
is_dutch()
#
Return if a participant is tagged with the country code of the Netherlands (nl)
Returns:
Type | Description |
---|---|
bool
|
Wether a participant is located in the Netherlands or not. |
Example
Check if the participant is from the netherlands.
Source code in participant/models.py
profile()
#
Get all the answered profile results of this participant
Returns:
Type | Description |
---|---|
QuerySet[Result]
|
All answered profile results from a participant |
Example
Print all the questions and answers from a participant’s profile results
Source code in participant/models.py
profile_object()
#
Get full profile data in one object
Returns:
Type | Description |
---|---|
dict
|
All profile data from a Participant in one object |
Example
Print all the questions, answers and scores from a participant’s profile results
Source code in participant/models.py
result_count()
#
Get the total number of results
Returns:
Type | Description |
---|---|
int
|
Total number of results from all the sessions by a Participant |
Source code in participant/models.py
score_sum(question_group_key)
#
Sums scores of all profile results with questions in a question group
Parameters:
Name | Type | Description | Default |
---|---|---|---|
question_group_key |
str
|
from |
required |
Returns:
Type | Description |
---|---|
float
|
Total score of all profile results from a Participant |
Example
Get the total score of all participant’s profile results from a specific question group
Source code in participant/models.py
scores_per_experiment()
#
Scores per finished experiment session
Returns:
Type | Description |
---|---|
list[dict]
|
All finished sessions and best scores from a Participant |
Example
Print score per experiment
Source code in participant/models.py
session_count()
#
Get the total number of started sessions by this participant
Returns:
Type | Description |
---|---|
int
|
Number of started sessions by a Participant |
Example
Get the number of started sessions by this Participant