I’ve got a CSV file with 3 columns, the X values, Y values, and their corresponding hexadecimal (#RRGGBB) values. I’ve been trying to create a scatter/bubble plot with the insides of the bubbles colored according to the hex values.
symbols(year, logtrans, circles=size, inches=0.05, bg=intel2$HexLogClock)
intel2$HexLogClock contains the hex values.
Sorry again for the noob question, any help is appreciated.
I think your trouble may lie in the hex values not being a character. Make sure they are first. See example below:
Notice the
stringsAsFactors=FALSEcode, which you can specify forread.csvand other import methods to ensure your character data isn’t converted to a factor.You can do this for your data using: