Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
R 0.26 KB | None | 0 0
  1. # 2.
  2. tempos <- read.csv("TP1/DadosTP1AnaliseDesempenhocsv.csv", TRUE, ";")
  3. tempos.df <- as.data.frame(tempos)
  4.  
  5. # a)
  6. erros.relativos <- data.frame(
  7.   ACO = tempos[[3]] / tempos[[2]],
  8.   PSO = tempos[[4]] / tempos[[2]],
  9.   ABC = tempos[[5]] / tempos[[2]]
  10. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement