diff --git a/US5-processamento.R b/US5-processamento.R index b02360d..84a4419 100644 --- a/US5-processamento.R +++ b/US5-processamento.R @@ -2,12 +2,12 @@ #Tamanho Sess�es x Notas Prova 1,2,3. require(nortest) -sessoes <- read.csv("tableMeanPerTest.csv") -geral <- read.csv("Geral.csv") -sessoes$meanSessions <- sessoes$meanSessions/3600 -sessao1 <- subset(sessoes,Prova == "Prova1",select=c(matricula,meanSessions)) -sessao2 <- subset(sessoes,Prova != "Prova3",select=c(matricula,meanSessions)) -sessao3 <- subset(sessoes,Prova != "",select=c(matricula,meanSessions)) +sessoes <- read.csv("dados/tableSumPerTest.csv") +geral <- read.csv("dados/Geral.csv") +sessoes$sumSessions <- sessoes$sumSessions/3600 +sessao1 <- subset(sessoes,Prova == "Prova1",select=c(matricula,sumSessions)) +sessao2 <- subset(sessoes,Prova != "Prova3",select=c(matricula,sumSessions)) +sessao3 <- subset(sessoes,Prova != "",select=c(matricula,sumSessions)) p1 <- subset(geral, prova1 >= 0 & status != "#VALUE!", select=c(matricula,prova1)) p2 <- subset(geral, prova2 >= 0 & status != "#VALUE!", select=c(matricula,prova2) ) @@ -22,10 +22,10 @@ sessoes.prova3 <- merge(sessao3,p3,by.x="matricula",by.y="matricula") colnames(sessoes.prova3) <- c("matricula", "tamanhoSessao", "nota.prova3") #acumulada -tabela2 = with(sessao2, aggregate(meanSessions, list(matricula), FUN=sum)) -colnames(tabela2) <- c("matricula","somaSessao") -tabela3 = with(sessoes,aggregate(meanSessions,list(matricula),FUN=sum)) -colnames(tabela3) <- c("matricula","somaSessao") +tabela2 = with(sessao2, aggregate(sumSessions, list(matricula), FUN=sum)) +colnames(tabela2) <- c("matricula","sumSessao") +tabela3 = with(sessoes,aggregate(sumSessions,list(matricula),FUN=sum)) +colnames(tabela3) <- c("matricula","sumSessao") #data frame para acumulada @@ -51,7 +51,6 @@ qqline(sessoes.acm3$tamanhoSessaoAcm) dev.off() #Sessoes x Prova1 - png(filename = "TamanhoSessoesProva1.png", width=650) par(mfrow=c(1,2)) hist(sessoes.prova1$tamanhoSessao, main="Histograma Tamanho Sessoes", xlab="Tamanho Sessoes", ylab="Frequencia") @@ -101,8 +100,6 @@ dev.off() - - ad.test(sessoes.prova1$tamanhoSessao) #FALSE shapiro.test(sessoes.prova1$tamanhoSessao) #FALSE ad.test(sessoes.prova2$tamanhoSessao) #FALSE diff --git a/analiseCorr.R b/analiseCorr.R index 84ab0f7..940c59f 100644 --- a/analiseCorr.R +++ b/analiseCorr.R @@ -30,9 +30,13 @@ ad.test(data_sum$sumSession) shapiro.test(data_sum$sumSession) png(filename = "cor-temposessoes.png", width=650) -plot(data_all$nota.final.teoria, (data_sum$sumSession/3600), log="xy", xlab = "Nota na disciplina", ylab = "Tamanho das sessões", las = 1) +plot(data_all$nota.final.teoria, + (data_sum$sumSession/3600), + log="xy", xlab = "Nota na disciplina", ylab = "Tempo total de Estudo", + las = 1, col=c("darkorange3","brown1","cornflowerblue","aquamarine3","black")[data_all$status], + pch=19) dev.off() data_all = data_all[with(data_all, order(matricula)), ] data_sum = data_sum[with(data_sum, order(matricula)), ] -cor.test(data_mean$sumSession, data_all$nota.final.pratica, method="spearman") +cor.test(data_sum$sumSession, data_all$nota.final.pratica, method="spearman") diff --git a/cor-temposessoes.png b/cor-temposessoes.png index e8723b6..c176e98 100644 Binary files a/cor-temposessoes.png and b/cor-temposessoes.png differ