Problems With P
• But less probable results are still possible!
• Publication bias
Bad science:
Pre-Registration
• You determine many things about your study, before running it, and register this with a specially made tool
Benefits
- Scientific
• Can not fiddle with data or hypotheses once data have been collected
• You will be spotted if you keep running the same study
• Journals can accept a publication based on pre-registration before the data are collected, avoiding the file drawer problem
Other methods
Pre-registration steps
Hypothesis/es
Determine the appropriate model
Run a sample size estimation
Other considerations
Pre-Registration and Organisation
overview
get descriptive stats (R STUDIO)
Describe(data, mean = mean(dataset), stdev = sd(dataset))
^^ arrange the descriptive stats
Describe(data, by dataset, mean = mean(dataset), stdev = sd(dataset))
^^ by conditon
• describe(data =data, mean_dataset = mean(dataset), SD_dataset = sd(dataset), max_dataset = max(dataset), min_dataset = min(Intrusion), by = Condition)
example r studio
describe(data =tetris, mean_intrusion = mean(Intrusion), SD_Intrusion = sd(Intrusion), max_Intrusion = max(Intrusion), min_Intrusion = min(Intrusion), by = Condition)