Skip to content

Commit

Permalink
Atualização US12
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyMenezes committed Mar 6, 2013
1 parent d5e286e commit dc64a6b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
Binary file added US12 - Sumario Variaveis.docx
Binary file not shown.
2 changes: 2 additions & 0 deletions US12 - Sumário variáveis.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ Sum





ok Tamanho das sess�es - limiar 0,78 percentil = 1:41h
ok Tempo total de estudo
ok N�mero de sess�es
Expand Down
8 changes: 6 additions & 2 deletions US12 - Tabela Intercorrelação Variáveis Independentes.R
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@

tabela1 = read.csv("dados/TabelaParaPerfis.csv")
tabela2 = read.csv("dados/TableSessionLength.csv") # calcular numero de sessoes
tabela3 = read.csv("dados/")
tabela3 = read.csv("dados/exercicios-20112.csv", head=F)

tabela1 = tabela1[,-3]
tabela1 = tabela1[,c(-1,-3)]
tabela2 <- with(tabela2,aggregate(session,list(matricula),FUN=max))
colnames(tabela2) = c("Matricula", "NumeroSessoes")

tabelaCorrelacao = cor(tabela1,use="complete.obs", method=c("spearman"))

write.csv(tabelaCorrelacao, "dados/TabelaIntercorrelação.csv")

0 comments on commit dc64a6b

Please sign in to comment.