Color Variable not working in GeoBubble

5 visualizzazioni (ultimi 30 giorni)
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

Risposte (1)

Cris LaPierre
Cris LaPierre il 1 Mar 2021
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 Commenti
Cris LaPierre
Cris LaPierre il 1 Mar 2021
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')
Harold Canchari Daga
Harold Canchari Daga il 1 Mar 2021
Thanks @Cris LaPierre ! The problem was the quotes, now it is working correctly. Thank you very much again.
Have a great day

Accedi per commentare.

Categorie

Scopri di più su Geographic Plots in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by