I have a dataset of the following form.
Rows: 110
Columns: 11
$ ID <int> 1, 2, 3, 4, 5, 6, 7, 8, 9,…
$ happy_experimental <dbl> 546.32, 549.03, 596.21, 46…
$ happy_control <dbl> 504.87, 314.97, 539.73, 43…
$ confused_experimental <dbl> 507.56, 446.49, 531.34, 26…
$ confused_control <dbl> 518.58, 513.33, 362.34, 65…
$ group <chr> "experimental", "control",…
$ charisma_time1 <int> 52, 56, 71, 44, 43, 56, 43…
$ charisma_time2 <int> 52, 58, 66, 41, 46, 64, 50…
$ sentimentality <int> 23, 22, 23, 13, 21, 18, 25…
$ decisiveness <int> 35, 22, 20, 10, 15, 15, 14…
$ sociability <int> 42, 46, 36, 15, 36, 21, 45…
I need to test the hypothesis that, Participants in the experimental group will be higher on charisma at Time 2 compared to Time 1, but there is no difference for participants in the control group.
The problem is both charisma_Time1 and charisma_Time2 are numeric variables and the group is the factor. How can I run ANOVA with these variables? I ran some ANOVA but I am not sure if the method is okay or not. Can anyone please suggest what should be the formula for testing the hypothesis with an ANOVA?