ipipApp: IPIP-NEO visualization in Shiny

Description Usage Arguments Value Source Examples

Description

The IPIP-NEO (International Personality Item Pool) is a comprehensive personality test of 5 human dimensions: Extraversion, Agreeableness, Conscientiousness, Neuroticism, Openness to New Experience.
This is a wrapper around a relatively large application built in shiny. The ui.R and server.R components are built into the shinyApp function which allows the user to call the shiny app as a function with whatever input dataset is desired.

Usage

1
ipipApp(ipip35)

Arguments

ipip35

data.frame of ipip-neo results. Should be 35 rows. First column should be the personality traits from the IPIP-NEO Personality test. Each additional column should be the corresponding results from the test for a person. Frist row is treated is as a header (Person's names).

Value

Shiny App

Source

http://www.personal.psu.edu/j5j/IPIP/

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
## creating some fake ipip data
ipipdf <- data.frame(
 X=c('Extraversion','Friendliness','Gregariousness','Assertiveness','Activity Level','Excitement Seeking','Cheerfulness',
     'Agreeableness','Trust','Morality','Altruism','Cooperation','Modesty','Sympathy',
     'Conscientiousness','Self Efficacy','Orderliness','Dutifulness','Achievement-Striving','Self Discipline','Cautiousness',
     'Neuroticism','Anxiety','Anger','Depression','Self Consciousness','Immoderation','Vulnerability',
     'Openness to Experience','Imagination','Artistic Interests','Emotionality','Adventurousness','Intellect','Liberalism'),
 Baelish=runif(35, 0, 100),
 Tyrion=runif(35, 0, 100),
 Cersei=runif(35, 0, 100),
 Ned=runif(35, 0, 100),
 Robert=runif(35, 0, 100),
 John=runif(35, 0, 100),
 Varys=runif(35, 0, 100),
 Arya=runif(35, 0, 100),
 stringsAsFactors=F
)

## actually run the Shiny App
ipipApp(ipipdf)

brooksandrew/Rsenal documentation built on May 13, 2019, 7:50 a.m.