View source: R/summary.conceptMap.R
summary.conceptMap | R Documentation |
This function provides a summary of a concept map object, including the number of statements, sorters, clusters, and the distribution of statements across clusters.
## S3 method for class 'conceptMap'
summary(object, ...)
object |
An object of class |
... |
arguments to be passed to methods |
The function verifies that the input object is of class "conceptMap"
and extracts key information from it.
It summarizes the number of statements, sorters, and clusters, and details the distribution of statements across
the identified clusters.
This function does not return a value; it prints a summary of the concept map object to the console.
# Simulate data with custom parameters:
set.seed(1)
myCMData <- simulateCardData(nSorters=40, pCorrect=.90, attributeWeights=c(1,1,1,1))
# Subject the data to sorter cluster analysis
myCMDataBySorters <- sorterMapping(myCMData)
# Subject sorter cluster 3 to concept mapping using default "network" method
myCMAnalysis3 <- conceptMapping(myCMDataBySorters[[3]])
# Generate summary of concept map of sorter cluster 3
summary(myCMAnalysis3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.