High School Alcoholism And Academic Performance
Dataset on Student Alcoholism and Academic Performance in High School
@kaggle.gabrielluizone_high_school_alcoholism_and_academic_performance
Dataset on Student Alcoholism and Academic Performance in High School
@kaggle.gabrielluizone_high_school_alcoholism_and_academic_performance
This dataset provides comprehensive insights into the socioeducational factors influencing student behavior, with a focus on alcohol consumption and academic performance in high school. Collected through a survey conducted among high school students, the dataset includes various social and gender-related information, as well as grades in the Portuguese Language discipline.
The data was gathered by P. Cortez and A. Silva for the study “Using Data Mining to Predict High School Student Performance,” presented at the 5th Future Business Technology Conference (FUBUTEC, 2008) in Porto, Portugal.
This dataset is valuable for exploring the complex interplay between social and educational factors on student behavior, focusing on alcohol consumption patterns and academic performance. Researchers, educators, and data enthusiasts can leverage this dataset for various analyses and predictive modeling.
Please cite the original source if you use or refer to this dataset:
P. Cortez e A. Silva. Usando a Mineração de Dados para Prever o Desempenho do Aluno do Ensino Médio. Em A. Brito e J. Teixeira Eds., Proceedings of 5th FUture BUsiness TEChnology Conference (FUBUTEC 2008) pp. 5-12, Porto, Portugal, abril de 2008, EUROSIS, ISBN 978-9077381-39-7.
Or if you can't find the author, you can cite this dataset by the DOI present in it
explorer = pd.read_csv('https://raw.githubusercontent.com/gabrielluizone/FirstCode/main/ipor_explorer.csv')
classification = pd.read_csv('https://raw.githubusercontent.com/gabrielluizone/FirstCode/main/ipor_classification.csv')
CREATE TABLE lpor_classification (
"escola" BIGINT,
"sexo" BIGINT,
"idade" BIGINT,
"tp_moradia" BIGINT,
"tamanho_familia" BIGINT,
"situacao_pais" BIGINT,
"educacao_mae" BIGINT,
"educacao_pai" BIGINT,
"trabalho_mae" BIGINT,
"trabalho_pai" BIGINT,
"motivo_escolha_escolar" BIGINT,
"responsavel_legal" BIGINT,
"tempo_ida_escola" BIGINT,
"tempo_estudo_semanal" BIGINT,
"apoio_educacao_extra" BIGINT,
"apoio_educacao_pais" BIGINT,
"aulas_particulares" BIGINT,
"ativ_extracurricular" BIGINT,
"frequentou_creche" BIGINT,
"quer_fazer_graduacao" BIGINT,
"tem_internet" BIGINT,
"esta_namorando" BIGINT,
"boa_convivencia_familia" BIGINT,
"tempo_livre_apos_escola" BIGINT,
"tempo_com_amigos" BIGINT,
"alcool_dia_util" BIGINT,
"alcool_fim_semana" BIGINT,
"estado_saude" BIGINT,
"falta_escolar" BIGINT,
"nota_1semestre" BIGINT,
"nota_2semestre" BIGINT
);CREATE TABLE lpor_explorer (
"escola" VARCHAR,
"sexo" VARCHAR,
"idade" BIGINT,
"tp_moradia" VARCHAR,
"tamanho_familia" VARCHAR,
"situacao_pais" VARCHAR,
"educacao_mae" VARCHAR,
"educacao_pai" VARCHAR,
"trabalho_mae" VARCHAR,
"trabalho_pai" VARCHAR,
"motivo_escolha_escolar" VARCHAR,
"responsavel_legal" VARCHAR,
"tempo_ida_escola" VARCHAR,
"tempo_estudo_semanal" VARCHAR,
"apoio_educacao_extra" VARCHAR,
"apoio_educacao_pais" VARCHAR,
"aulas_particulares" VARCHAR,
"ativ_extracurricular" VARCHAR,
"frequentou_creche" VARCHAR,
"quer_fazer_graduacao" VARCHAR,
"tem_internet" VARCHAR,
"esta_namorando" VARCHAR,
"boa_convivencia_familia" VARCHAR,
"tempo_livre_apos_escola" VARCHAR,
"tempo_com_amigos" VARCHAR,
"alcool_dia_util" VARCHAR,
"alcool_fim_semana" VARCHAR,
"estado_saude" VARCHAR,
"falta_escolar" BIGINT,
"nota_1semestre" BIGINT,
"nota_2semestre" BIGINT
);CREATE TABLE student_lpor (
"school" VARCHAR,
"sex" VARCHAR,
"age" BIGINT,
"address" VARCHAR,
"famsize" VARCHAR,
"pstatus" VARCHAR,
"medu" BIGINT,
"fedu" BIGINT,
"mjob" VARCHAR,
"fjob" VARCHAR,
"reason" VARCHAR,
"guardian" VARCHAR,
"traveltime" BIGINT,
"studytime" BIGINT,
"schoolsup" VARCHAR,
"famsup" VARCHAR,
"paid" VARCHAR,
"activities" VARCHAR,
"nursery" VARCHAR,
"higher" VARCHAR,
"internet" VARCHAR,
"romantic" VARCHAR,
"famrel" BIGINT,
"freetime" BIGINT,
"goout" BIGINT,
"dalc" BIGINT,
"walc" BIGINT,
"health" BIGINT,
"absences" BIGINT,
"g1" BIGINT,
"g2" BIGINT
);Anyone who has the link will be able to view this.