Guest User

Untitled

a guest
May 21st, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.47 KB | None | 0 0
  1. if(!require("FrF2")) install.packages("FrF2") ; library(FrF2)
  2.  
  3. df <- EXPERIMENTO_SALA <- read_excel("mypath/EXPERIMENTO SALA.xlsx",
  4. col_types = c("numeric", "numeric", "numeric",
  5. "numeric", "numeric", "numeric",
  6. "numeric", "numeric", "numeric"))
  7.  
  8. print.data.frame(df)
  9.  
  10. Run order pH Temperature (<U+25E6>C) Dose (g) Concentration (mg/L) Speed
  11. (rpm) % removal of SMO
  12. 1 1 3 5 0.05 350
  13. 100 99.90
  14. 2 2 3 5 0.50 50
  15. 100 80.20
  16. 3 3 9 30 0.05 50
  17. 200 38.00
  18. 4 4 3 5 0.05 50
  19. 200 94.80
  20. 5 5 9 5 0.50 50
  21. 200 27.00
  22. 6 6 9 5 0.50 350
  23. 100 51.70
  24. 7 7 9 30 0.50 50
  25. 100 60.00
  26. 8 8 3 30 0.50 50
  27. 200 96.40
  28. 9 9 3 5 0.50 350
  29. 200 99.77
  30. 10 10 9 5 0.05 350
  31. 200 9.10
  32. 11 11 9 30 0.50 350
  33. 200 58.00
  34. 12 12 9 30 0.05 50
  35. 200 39.10
  36. 13 13 9 5 0.05 50
  37. 100 23.40
  38. 14 14 3 30 0.50 50
  39. 200 96.70
  40. 15 15 3 5 0.05 350
  41. 100 99.70
  42. 16 16 3 30 0.05 350
  43. 200 98.40
  44. 17 17 3 30 0.05 50
  45. 100 99.60
  46. 18 18 9 5 0.50 50
  47. 200 28.00
  48. 19 19 9 30 0.50 350
  49. 200 58.40
  50. 20 20 3 5 0.50 50
  51. 100 80.60
  52. 21 21 3 30 0.05 50
  53. 100 99.50
  54. 22 22 3 30 0.50 350
  55. 100 97.40
  56. 23 23 9 5 0.50 350
  57. 100 52.00
  58. 24 24 3 5 0.50 350
  59. 200 99.40
  60. 25 25 3 30 0.05 350
  61. 200 98.80
  62. 26 26 9 30 0.05 350
  63. 100 37.10
  64. 27 27 9 5 0.05 50
  65. 100 25.00
  66. 28 28 9 30 0.05 350
  67. 100 37.40
  68. 29 29 3 30 0.50 350
  69. 100 97.70
  70. 30 30 9 30 0.50 50
  71. 100 61.20
  72. 31 31 9 5 0.05 350
  73. 200 10.00
  74. 32 32 3 5 0.05 50
  75. 200 95.10
  76. % removal of CO % removal of Bright-Edge 80
  77. 1 99.97 99.90
  78. 2 99.40 89.14
  79. 3 54.00 87.60
  80. 4 99.60 91.80
  81. 5 59.60 68.80
  82. 6 46.80 13.40
  83. 7 61.60 57.40
  84. 8 98.00 88.20
  85. 9 99.77 98.80
  86. 10 23.10 8.00
  87. 11 79.70 69.40
  88. 12 56.00 88.00
  89. 13 90.40 44.60
  90. 14 97.70 88.00
  91. 15 99.80 99.10
  92. 16 99.80 99.60
  93. 17 99.80 90.60
  94. 18 60.10 68.90
  95. 19 80.10 70.00
  96. 20 99.60 89.90
  97. 21 99.30 91.00
  98. 22 97.90 97.00
  99. 23 47.10 14.20
  100. 24 98.60 98.60
  101. 25 99.70 99.30
  102. 26 55.40 36.80
  103. 27 91.00 44.40
  104. 28 55.10 37.20
  105. 29 97.20 97.20
  106. 30 62.00 58.00
  107. 31 22.80 9.00
  108. 32 99.40 92.00
  109.  
  110. plan.person = FrF2(nfactors = 5,
  111. resolution = 5,
  112. replications = 2,
  113. randomize = FALSE,
  114. factor.names = list(
  115. pH = c(3, 9),
  116. Temp = c(5, 30),
  117. Dose = c(0.05, 0.5),
  118. Conc = c(50, 350),
  119. Speed = c(100, 200)
  120. ))
Add Comment
Please, Sign In to add comment