Color Variable not working in GeoBubble

4 次查看(过去 30 天)
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

回答(1 个)

Cris LaPierre
Cris LaPierre 2021-3-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 个评论
Cris LaPierre
Cris LaPierre 2021-3-1
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
Thanks @Cris LaPierre ! The problem was the quotes, now it is working correctly. Thank you very much again.
Have a great day

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Geographic Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by