Skip to content

Commit

Permalink
ajuste
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyMenezes committed Mar 18, 2013
1 parent 5ea33e9 commit 042872c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
8 changes: 2 additions & 6 deletions Processamento/UC1_Passo1.R
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
library(foreign)

get.exercicios.com.nota.minima = function(fonte, nota.minima=10) {
print("Lendo Exercicios...")
exercicios = read.csv(fonte)
print(paste("Tamanho do arquivo (em linhas):", nrow(exercicios)))

get.exercicios.com.nota.minima = function(exercicios, nota.minima=10) {
filtro = exercicios[exercicios$nota == nota.minima, ]
print(paste("Tamanho do arquivo (em linhas) com nota minima de ", nota.minima, ": ", nrow(filtro), sep=""))
print("Exercicios Lidos.")
Expand Down Expand Up @@ -149,7 +145,7 @@ format.prova.exercicio = function(dados, exercicio.inicial, exercicio.final) {
return(formatado)
}

dados.exercicios.submetidos = get.exercicios.com.nota.minima("../Dados/exercicios-20112.csv")
dados.exercicios.submetidos = get.exercicios.com.nota.minima(data_exerc)
colnames(dados.exercicios.submetidos) = c("matricula", "exercicio", "MM.DD.AAAA.HH.MM")

data.prova.um = as.POSIXct("9.17.2011.10.00.00", format="%m.%d.%Y.%H.%M.%S")
Expand Down
2 changes: 1 addition & 1 deletion US15 - analise_US6.R
Original file line number Diff line number Diff line change
Expand Up @@ -105,4 +105,4 @@ grafico2 <- ggplot(dados.fora,aes(sumSession,atividade)) +

png(filename = "ScatterplotUS6-ForaDeAula.png", width = 480, height = 480)
print(grafico2)
dev.off()
dev.off()
5 changes: 3 additions & 2 deletions US2 - Automatização.R
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Codigo que cria as tabelas dos agrupamentos dos dados
# Codigo para automatização do LA1.0
# Andrey Menezes - versão 2.0 (Fevereiro 2013)

#dados usados
Expand All @@ -14,6 +14,7 @@ source("../Processamento/processamento.R")

#Script de automatizacao UC1
source("../Processamento/UC1-A Priori.R")
source("../Processamento/UC1_Passo1.R")

#Script de automatizacao UC2
source("../Processamento/UC2.R")
source("../Processamento/UC2.R")

0 comments on commit 042872c

Please sign in to comment.