Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-analytics-data-api
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-analytics-data-api
Commits
af85c1ee
Commit
af85c1ee
authored
Jun 25, 2015
by
Alison Hodges
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adds the cumulative_count response
parent
d3a72344
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
5 deletions
+9
-5
analytics_data_api/v0/views/courses.py
+5
-5
docs/api/source/change_log.rst
+3
-0
docs/api/source/courses.rst
+1
-0
No files found.
analytics_data_api/v0/views/courses.py
View file @
af85c1ee
...
@@ -465,12 +465,12 @@ class CourseEnrollmentModeView(BaseCourseEnrollmentView):
...
@@ -465,12 +465,12 @@ class CourseEnrollmentModeView(BaseCourseEnrollmentView):
* course_id: The ID of the course for which data is returned.
* course_id: The ID of the course for which data is returned.
* date: The date for which the enrollment count was computed.
* date: The date for which the enrollment count was computed.
* count: The
total count of
enrolled users.
* count: The
count of currently
enrolled users.
* cumulative_count: The cumulative
count of
users ever enrolled.
* cumulative_count: The cumulative
total of all
users ever enrolled.
* created: The date the counts were computed.
* created: The date the counts were computed.
* honor: The number of users enrolled in honor code mode.
* honor: The number of users
currently
enrolled in honor code mode.
* professional: The number of users enrolled in professional mode.
* professional: The number of users
currently
enrolled in professional mode.
* verified: The number of users enrolled in verified mode.
* verified: The number of users
currently
enrolled in verified mode.
**Parameters**
**Parameters**
...
...
docs/api/source/change_log.rst
View file @
af85c1ee
...
@@ -8,6 +8,9 @@ Change Log
...
@@ -8,6 +8,9 @@ Change Log
* - Date
* - Date
- Change
- Change
* - 5 Aug 2015
- Updated :ref:`Get the Course Enrollment by Mode` to add the
``cumulative_count`` response value.
* - 21 May 2015
* - 21 May 2015
- Updated :ref:`Get the Course Video Data` to add the ``users_at_start``
- Updated :ref:`Get the Course Video Data` to add the ``users_at_start``
and ``users_at_end`` response values.
and ``users_at_end`` response values.
...
...
docs/api/source/courses.rst
View file @
af85c1ee
...
@@ -107,6 +107,7 @@ Get the Course Enrollment by Mode
...
@@ -107,6 +107,7 @@ Get the Course Enrollment by Mode
"course_id": "edX/DemoX/Demo_Course",
"course_id": "edX/DemoX/Demo_Course",
"date": "2014-12-10",
"date": "2014-12-10",
"count": 1890,
"count": 1890,
"cumulative_count": 1931,
"created": "2014-12-10T193146",
"created": "2014-12-10T193146",
"honor": 945,
"honor": 945,
"professional": 189,
"professional": 189,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment