ANOVA
Shiv Dawar
2023-06-06
Abstract
: How do university training and subsequent practical experience affect expertise
in data science? To answer this question we developed methods to assess data science
knowledge and the competence to formulate answers, construct code to problem solve, and
create reports of outcomes. In the cross-sectional study, undergraduate students, trainees
in a certified postgraduate data science curriculum, and data scientists with more than 10
years of experience were tested (100 in total: 20 each of novice, intermediate, and
advanced university students, postgraduate trainees, and experienced data scientists). We
discuss the results against the background of expertise research and the training of data
scientist. Important factors for the continuing professional development of data scientists
are proposed.
Dataset:
APA write ups should include means, standard deviation/error (or a figure), t-values, p-
values, effect size, and a brief description of what happened in plain English.
-
Participant type: novice students, intermediate students,
advanced university students, postgraduate trainees, and experienced
data scientists
-
Competence: an average score of data science knowledge and
competence based on a knowledge test and short case studies.
library
(ez)
library
(MOTE)
## Warning: package 'MOTE' was built under R version 3.5.3
library
(ggplot2
)
library
(pwr)
##import the data
master =
read.csv
(
"10_data.csv"
)
##reorder the factors
master
$
participant_type =
factor
(master
$
participant_type,
levels =
c
(
"novice"
,
"intermediate"
,
"advanced"
,
"postgraduate"
,
"experienced"
))