Color Variable not working in GeoBubble

Hi,
I'm a beginner at Matlab and I have one simple issue about "Color Variable" used in geobubble.
I ran the code but i get an error message
geobubble(EventTypes.Begin_Lat,EventTypes.Begin_Lon,'ColorVariable','State')
Do you an idea of what can be the problem?
Thank in advance for your help,
Harold

Answers (1)

Try the following syntax
For your data, that means the following.
geobubble(EventTypes.Begin_Lat,EventTypes.Begin_Lon,[],State)
Don't put your variable name in quotes, as that passes in a character array of letters instead of a variable of values.

2 Comments

If instead you are using a table, then follow this example. For what you've shown, that means your table name first, then the table variables that correspond to each input. In this syntax, you do pass in the inputs as character arrays because you are telling MATLAB the variable names to use in the table.
geobubble(EventTypes,'Begin_Lat','Begin_Lon','ColorVariable','State')
Thanks @Cris LaPierre ! The problem was the quotes, now it is working correctly. Thank you very much again.
Have a great day

Sign in to comment.

Categories

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!