onconova.analytics.controllers
This module provides API endpoints for dashboard analytics in the Onconova platform. It exposes statistics and metrics related to patient cases, primary sites, data completion, and temporal trends for use in dashboard visualizations.
DashboardController
¶
Bases: ControllerBase
DashboardController provides API endpoints for retrieving various analytics and statistics related to oncological data on the platform. Each endpoint returns structured data models representing the requested statistics, supporting data-driven insights for platform users.
get_cases_over_time()
¶
Retrieves the cumulative count of patient cases over time, grouped by month.
Source code in onconova/analytics/controllers.py
get_data_completion_statistics()
¶
Computes and returns statistics on data completion for patient cases.
- If there are no patient cases, returns zeroed statistics.
- Uses Django ORM aggregation and annotation for efficient computation.
- Identifies most incomplete categories and the most affected sites for each.
- Tracks completion progress over time using monthly aggregation.
Source code in onconova/analytics/controllers.py
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 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 |
|
get_full_cohort_statistics()
¶
Retrieves comprehensive statistics for the full cohort, including counts of cases, primary sites, entries, mutations, clinical centers, contributors, cohorts, and projects.
Source code in onconova/analytics/controllers.py
get_primary_site_statistics()
¶
Retrieves statistical data for primary neoplastic entities grouped by topography.
This method performs the following steps:
- Selects distinct topography groups from primary neoplastic entities.
- For each topography group, identifies the cohort of patient cases associated with primary neoplastic entities matching the group's code.
- Calculates the population size and the median data completion rate for each cohort.
- Constructs a list of EntityStatistics objects containing the computed statistics and topography information.
- Sorts the statistics by population size in descending order.