R writeBin() lookout for data type
R uses "Numeric" as it's default type for numbers.
This can sometimes lead to confusion and errors when a specific type is needed.
In this example the writeBin() function is used to write data to binary.
How to fix R package error missing required header GL/glu.h
Encountered
configure: error: missing required header GL/glu.h
while trying to install R packages
managed to fix it with: apt-get install libglu1-mesa-dev
How to fix R package error X11 not found but required
Encountered
configure: error: X11 not found but required
while trying to install R rgl package,
managed to fix it with: apt-get install xorg-dev