Student Engagement
Predicting Engagement and Exam Performance
@kaggle.thedevastator_student_engagement_with_tableau_a_data_science_p
Predicting Engagement and Exam Performance
@kaggle.thedevastator_student_engagement_with_tableau_a_data_science_p
By [source]
This dataset contains information on student engagement with Tableau, including quizzes, exams, and lessons. The data includes the course title, the rating of the course, the date the course was rated, the exam category, the exam duration, whether the answer was correct or not, the number of quizzes completed, the number of exams completed, the number of lessons completed, the date engaged, the exam result, and more
The 'Student Engagement with Tableau' dataset offers insights into student engagement with the Tableau software. The data includes information on courses, exams, quizzes, and student learning.
This dataset can be used to examine how students use Tableau, what kind of engagement leads to better learning outcomes, and whether certain course or exam characteristics are associated with student engagement
- Creating a heat map of student engagement by course and location
- Determining which courses are most popular among students from different countries
- Identifying patterns in students' exam results
License
> License: CC0 1.0 Universal (CC0 1.0) - Public Domain Dedication
> No Copyright - You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission. See Other Information.
File: 365_course_info.csv
| Column name | Description |
|---|---|
| course_title | The title of the course. (String) |
File: 365_course_ratings.csv
| Column name | Description |
|---|---|
| course_rating | The rating given to the course by the student. (Numeric) |
| date_rated | The date on which the course was rated. (Date) |
File: 365_exam_info.csv
| Column name | Description |
|---|---|
| exam_category | The category of the exam. (Categorical) |
| exam_duration | The duration of the exam in minutes. (Numerical) |
File: 365_quiz_info.csv
| Column name | Description |
|---|---|
| answer_correct | Whether or not the student answered the question correctly. (Boolean) |
File: 365_student_engagement.csv
| Column name | Description |
|---|---|
| engagement_quizzes | The number of times a student has engaged with quizzes. (Numeric) |
| engagement_exams | The number of times a student has engaged with exams. (Numeric) |
| engagement_lessons | The number of times a student has engaged with lessons. (Numeric) |
| date_engaged | The date of the student's engagement. (Date) |
File: 365_student_exams.csv
| Column name | Description |
|---|---|
| exam_result | The result of the exam. (Categorical) |
| exam_completion_time | The time it took to complete the exam. (Numerical) |
| date_exam_completed | The date the exam was completed. (Date) |
File: 365_student_hub_questions.csv
| Column name | Description |
|---|---|
| date_question_asked | The date the question was asked. (Date) |
File: 365_student_info.csv
| Column name | Description |
|---|---|
| student_country | The country of the student. (Categorical) |
| date_registered | The date the student registered for the course. (Date) |
File: 365_student_learning.csv
| Column name | Description |
|---|---|
| minutes_watched | The number of minutes watched by a student. (Numeric) |
| date_watched | The date of engagement. (Date) |
If you use this dataset in your research, please credit the original author.
CREATE TABLE n_365_course_info (
"course_id" BIGINT,
"course_title" VARCHAR
);CREATE TABLE n_365_course_ratings (
"course_id" BIGINT,
"student_id" BIGINT,
"course_rating" BIGINT,
"date_rated" TIMESTAMP
);CREATE TABLE n_365_exam_info (
"exam_id" BIGINT,
"exam_category" BIGINT,
"exam_duration" BIGINT
);CREATE TABLE n_365_quiz_info (
"quiz_id" BIGINT,
"question_id" BIGINT,
"answer_id" BIGINT,
"answer_correct" VARCHAR
);CREATE TABLE n_365_student_engagement (
"engagement_id" BIGINT,
"student_id" BIGINT,
"engagement_quizzes" BIGINT,
"engagement_exams" BIGINT,
"engagement_lessons" BIGINT,
"date_engaged" TIMESTAMP
);CREATE TABLE n_365_student_exams (
"exam_attempt_id" BIGINT,
"student_id" BIGINT,
"exam_id" BIGINT,
"exam_result" BIGINT,
"exam_completion_time" DOUBLE,
"date_exam_completed" TIMESTAMP
);CREATE TABLE n_365_student_hub_questions (
"hub_question_id" BIGINT,
"student_id" BIGINT,
"date_question_asked" TIMESTAMP
);CREATE TABLE n_365_student_info (
"student_id" BIGINT,
"student_country" VARCHAR,
"date_registered" TIMESTAMP
);CREATE TABLE n_365_student_learning (
"student_id" BIGINT,
"course_id" BIGINT,
"minutes_watched" DOUBLE,
"date_watched" TIMESTAMP
);CREATE TABLE n_365_student_purchases (
"purchase_id" BIGINT,
"student_id" BIGINT,
"purchase_type" VARCHAR,
"date_purchased" TIMESTAMP
);CREATE TABLE n_365_student_quizzes (
"student_id" BIGINT,
"quiz_id" BIGINT,
"question_id" BIGINT,
"answer_id" DOUBLE
);Anyone who has the link will be able to view this.