Characteristic Emotion

characteristic_emotion(
  id_info = NULL,
  e = NULL,
  p = NULL,
  a = NULL,
  equation_key = NULL,
  equation_gender = NULL,
  eq_df = NULL,
  ...
)

Arguments

id_info

a df from reshape_events_df with EPA information of the identity. Must provide either this or E, P, and A values.

e

Evaluation value

p

Power value

a

Activity value

equation_key

is a string that corresponds to equation_key from actdata

equation_gender

is a string that corresponds to what gendered data from eq

eq_df

Equation data frame

...

Value

df with a 3 digit EPA profile of characteristic emotion for the identity

Examples

id <- tibble::tibble(actor = "brute")
id_info <- reshape_events_df(id, df_format = "wide", dictionary_key = "usfullsurveyor2015", dictionary_gender = "average")
#> Joining, by = c("term", "component")
characteristic_emotion(id_info, equation_key = "us2010", equation_gender = "male")
#>           [,1]
#> [1,] -1.396101
#> [2,]  3.046890
#> [3,]  1.459946