Identification of ethical considerations involving research where data is collected:
Experiments on prisoners included:
Injecting dye into the eyes of twins to study conjoined twins.
Removal of bones, muscles, nerves without anesthesia to study bone, muscle, and nerve regeneration.
Infection with malaria then treated with various drugs to test efficacy.
Systematic killing of several million Jews in Europe required extensive planning, organization, and coordination.
Government statistical agencies conducted special censuses or population registries in certain places.
The completed forms from these data collections were used to provide names and addresses of Jews to be included in transports to concentration camps and extermination camps.
(Sletzer, 1998)
(Sletzer, 1998)
(Sletzer, 1998)
The Nuremberg code codified many of our standard principles of ethical research today including:
The principles include:
Three elements of informed consent:
Information: the research procedure, their purposes, risks and anticipated benefits, alternative procedures (where therapy is involved), and a statement offering the subject the opportunity to ask questions and to withdraw at any time from the research.
Comprehension: The manner and context in which information is conveyed is as important as the information itself. For example, presenting information in a disorganized and rapid fashion, allowing too little time for consideration or curtailing opportunities for questioning, all may adversely affect a subject's ability to make an informed choice.
Voluntariness: An agreement to participate in research constitutes a valid consent only if voluntarily given. This element of informed consent requires conditions free of coercion and undue influence.
(Metcalfe and Crawford, 2016)
(Metcalfe and Crawford, 2016)
(Metcalfe and Crawford, 2016)
(Metcalfe and Crawford, 2016)
Recent news reports claim that Cambridge Analytica bought 50 million Facebook profiles from a researcher.
Only 270,000 users consented to having their data used by the researcher.
Cambridge Analytica combined The Facebook data with other databases to build profiles of these users.
This allowed the company to use the data to target users with specific ads.
(Metcalfe and Crawford, 2016)
(Metcalfe and Crawford, 2016)
set.seed(10) train <- dat_crime %>% sample_frac(size = 0.8) test <- dat_crime %>% anti_join(train, by = 'id') reg_mod <- lm(recid_score ~ physiog_score, data = train) summary(reg_mod)$r.squared
## [1] 0.854069
yhat <- predict(reg_mod, newdata = test) y <- test$recid_score sqrt(sum((y-yhat)^2)/length(test$recid_score))
## [1] 2.077955
yhat <- predict(reg_mod, newdata = dat_new) y <- dat_new$recid_score sqrt(sum((y - yhat)^2) / length(dat_new$recid_score))
## [1] 14.48995