TidyTuesday: Open Psychometrics 2022Wk33

MacOS
R
Author

Chun Su

Published

November 2, 2022

TidyTuesday 2022-08-16

open psychometrics

Two tasks: - make a image-loaded fancy ggplot - use questions to predict myers_briggs type

Discussion: - how to use rating user number and standard deviation from the data - other ideas worth to try

library(tidyverse)
library(tidymodels)
library(ggimage)
theme_set(theme_bw())

characters <- readr::read_csv('https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2022/2022-08-16/characters.csv')

myers_briggs <- readr::read_csv('https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2022/2022-08-16/myers_briggs.csv')

psych_stats <- readr::read_csv('https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2022/2022-08-16/psych_stats.csv')

ESTJ: extraversion (E), sensing (S), thinking (T), judgment (J) INFP: introversion (I), intuition (N), feeling (F), perception (P)

EDA