Student Performance Example SOW
Student performance_ an example of data analysis and SMART questions and Scope o
@kaggle.huyennguyen63_student_performance_example_sow
Student performance_ an example of data analysis and SMART questions and Scope o
@kaggle.huyennguyen63_student_performance_example_sow
Source: Kaggle users
Data analysis: Student's placement scores with their years to join the club.
The file includes some worksheets such as raw data, summary data, pivot table and a chart, SMART questions and SOW.
In the chart: You can see the connection between student's placement scores and their time to join the club.
The table involves 5 columns, and then it was added more two columns (Year and Time_Join_Club) so that you can calculate the number of years in which the students have joined the club.
Math_Score| Reading_Score| Writing_Score |Placement_Score |Club_Join_Date|Year | Time _Join_Club|
CREATE TABLE studentsperformance (
"math_score" BIGINT,
"reading_score" BIGINT,
"writing_score" BIGINT,
"placement_score" BIGINT,
"club_join_date" BIGINT
);Anyone who has the link will be able to view this.