Numerics ids to alphabetical ids
Function to transform a list of numeric ids to alphabetic ids
alpha_label(x)
x |
A vector of numeric ids |
Given a vector of numeric cluster ids, 'alpha_label' converts each id to its corresponding alphabets. It combines alphabets for ids greater than 26.
A vector of alphabetical ids.
data(TO1Risk) set.seed(1000) #pick 4 random clusters center <- TO1Risk[runif(4,1,nrow(TO1Risk)), ] #Assigning each individual to nearest centre numeric_Labels <- kml::affectIndivC(TO1Risk, center) mode(numeric_Labels) #transform numeric cluster labels to alphabets alphab_Labels <- alpha_label(numeric_Labels) mode(alphab_Labels)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.