Edx Courses
A list of online courses on edx.org learning platform
@kaggle.imuhammad_edx_courses
A list of online courses on edx.org learning platform
@kaggle.imuhammad_edx_courses
edX is a massive open online course (MOOC) provider founded by Harvard and MIT. It hosts a wide range of online university-level courses in different disciplines.
This dataset contains information about 976 courses that are currently available on the edx.org platform.
variable | class | description |
---|---|---|
title | character | Title of the course |
summary | character | A summary of the course |
n_enrolled | integer | Number of student that have enrolled in the courses |
course_type | character | Type of course |
institution | character | The institution that created and provided the course |
instructors | character | Name(s) of course instructors separated by '-' |
Level | character | Difficulty level |
subject | character | Subject of the course |
language | character | Language |
subtitles | character | Available Subtitle(s) |
course_effort | character | An estimate of time and effort needed to complete the course |
course_length | character | length of the course in weeks |
price | character | |
course_description | character | A description of the course |
course_syllabus | character | course syllabus |
course_url | character | course URL on edx.org |
The dataset was scraped using R and the rvest library by Hadely Wickhom.
Your data will be in front of the world's largest data science community. What questions do you want to see answered?
CREATE TABLE edx_courses (
"title" VARCHAR,
"summary" VARCHAR,
"n_enrolled" DOUBLE,
"course_type" VARCHAR,
"institution" VARCHAR,
"instructors" VARCHAR,
"level" VARCHAR,
"subject" VARCHAR,
"language" VARCHAR,
"subtitles" VARCHAR,
"course_effort" VARCHAR,
"course_length" VARCHAR,
"price" VARCHAR,
"course_description" VARCHAR,
"course_syllabus" VARCHAR,
"course_url" VARCHAR
);
Anyone who has the link will be able to view this.