Description Usage Arguments Value Examples
View source: R/netfacs_extract.R
Extract results of 'netfacs' function for specific combination sizes For the selected combination size, the function returns all combinations that had significantly higher probabilities of occuring than expected under the null condition
1 2 3 4 5 6 7 8 | netfacs.extract(
netfacs.data,
level = 1,
min.count = 1,
min.prob = 0,
min.specificity = 0,
significance = 0.01
)
|
netfacs.data |
object resulting from netfacs() function |
level |
combination size for which all remaining combinations should be extracted |
min.count |
numeric value, suggesting how many times a combination should at least occur to be displayed |
min.prob |
numeric value, suggesting the probability at which a combination should at least occur to be displayed |
min.specificity |
numeric value, suggesting the specificity a combination should at least have for the test condition to be displayed |
significance |
numeric value, determining the p-value below which combinations are considered to be dissimilar enough from the null distribution |
Function returns a dataframe that includes all combinations for the selected combination size that fulfil the selected criteria
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | ### how do angry facial expressions differ from non-angry ones?
data(emotions_set)
angry.face <- netfacs(
data = emotions_set[[1]],
condition = emotions_set[[2]]$emotion,
test.condition = "anger",
ran.trials = 100,
combination.size = 2
)
netfacs.extract(angry.face,
level = 2,
min.count = 5,
min.prob = 0.01,
min.specificity = 0.5,
significance = 0.01
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.