Participant
backend.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 backend/participant/models.py
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 | |
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 backend/participant/models.py
profile()
#
Get full profile data in one dictionary
Returns:
| Type | Description |
|---|---|
dict
|
All profile data from a Participant in one dictionary |
Example
Print all the questions, answers and scores from a participant’s profile results
Source code in backend/participant/models.py
profile_results()
#
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 backend/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 backend/participant/models.py
score_sum(question_list)
#
Sums scores of all profile results with questions in a question list
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
question_list
|
QuestionList
|
a QuestionList object for which to return the summed score |
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 list
Source code in backend/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 backend/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