deleteLeft | R Documentation |
Function to delete the last n-characters of a string from the left-hand side.
deleteLeft(fac, n)
fac |
is an object of class string or factor |
n |
is the number of characters to be deleted of a the string given in 'fac'. |
It is specially set to arrange data vector having alphanumeric format.
This function returns an object having n-less characters from the left-hand side.
Christian Salas-Eljatib
Salas-Eljatib, C. 2021. Análisis de datos con el programa estadístico R: una introducción aplicada. Ediciones Universidad Mayor, Santiago, Chile. 170 p. https://eljatib.com/rlibro
plot.id <- c("BNE1","BNE2","PLE1")
deleteLeft(plot.id,1)
deleteLeft(plot.id,2)
deleteLeft(plot.id,3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.