I was making a barplot in RStudio from a variable in a list that had 1048575 objects. The barplot was constructed like this
towers = cell_tracking$grid_pos #grid_pos is the variable, cell_tracking is the list
towers.freq = table(towers)
barplot(towers.freq, xlab = "tower IDs", ylab = "frequency"
Perhaps I used the wrong method because this is the error message I got
0x1016e8f20. This is a serious error. This application, or a library it uses, is using an
invalid context and is thereby contributing to an overall degradation of system stability
and reliability
I'm not even sure that my barplot is the reason behind this error message, but it did appear right after I ran the code to make the barplot, so that seems like the most likely source. Does anyone know the reason behind this? Should I be scared? What should I do to fix it?