Second Mandatory Assignment

The text of the second mandatory assignment has been published, please see here the text of the assignment.

It must be submitted via Canvas by Thursday, November 3rd (2022), 14:30 (CET).

For those who want to use a program different from R to perform the analysis, they can get the data in R and save in a .csv file by using the following script (in R) and then start form the saved file:

---
library(mlbench)
data(PimaIndiansDiabetes)
data(PimaIndiansDiabetes2)
---

Depending on your preference about the use of comma or point in the number format, use

either:
---
write.csv(PimaIndiansDiabetes, file = 'PimaIndiansDiabetes.csv')
write.csv(PimaIndiansDiabetes2, file = 'PimaIndiansDiabetes2.csv')
---

or:
---
write.csv2(PimaIndiansDiabetes, file = 'PimaIndiansDiabetes.csv')
write.csv2(PimaIndiansDiabetes2, file = 'PimaIndiansDiabetes2.csv')
---
 

Published Oct. 13, 2022 5:56 PM - Last modified June 21, 2023 10:06 AM