Display the Pattern of Missing Data of a List of Square Matrices
It displays the pattern of missing data (or pattern of data that are present) of a list of square matrices with the same dimensions.
pattern.na(x, show.na = TRUE, type=c("tssem", "osmasem"))
x |
A list of square matrices |
show.na |
If it is |
type |
If it is |
A square matrix of numerical values with the same dimensions of the input matrices.
Mike W.-L. Cheung <mikewlcheung@nus.edu.sg>
## Show the pattern of missing data pattern.na(Hunter83$data, show.na=TRUE) # Ability Knowledge Work sample Supervisor # Ability 1 3 3 2 # Knowledge 3 2 4 3 # Work sample 3 4 2 3 # Supervisor 2 3 3 1 ## Show the pattern of data that are present pattern.na(Hunter83$data, show.na=FALSE) # Ability Knowledge Work sample Supervisor # Ability 13 11 11 12 # Knowledge 11 12 10 11 # Work sample 11 10 12 11 # Supervisor 12 11 11 13
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.