Wolfram Language

Visualização: legendas, escalas, exclusões

Sistema de anotação de atributos dos pontos

Colocar anotações em pontos dispersos com legendas de vários comprimentos pode ser um desafio, se feito manualmente. O novo sistema de anotação possui uma solução automática.

Aqui temos o exemplo de um gráfico do PIB em relação à população de todos os países europeus.

mostre o input completo da Wolfram Language
In[1]:=
Click for copyable input
options = {ImageSize -> 550, PlotTheme -> "Detailed", PlotLabel -> "GDP vs. Population for European Countries", FrameLabel -> {"Population", "GDP"}, LabelStyle -> 10, PlotStyle -> PointSize[0.01], PlotRangePadding -> Scaled[.06]};
In[2]:=
Click for copyable input
countries = CountryData["Europe"]; allCountryData = DeleteMissing[ EntityValue[CountryData["Europe"], {"Population", "GDP", "Name"}], 1, Infinity];

Mostre 20 exemplos de anotações automáticas com atributos dos pontos.

In[3]:=
Click for copyable input
ListLogLogPlot[ allCountryData[[1 ;; 20, {1, 2}]] -> allCountryData[[1 ;; 20, 3]], options]
Out[3]=

Quando os pontos forem muitos e estiverem muito concentrados, combine anotações com uma leganda, pode ser uma boa solução.

In[4]:=
Click for copyable input
legend = Multicolumn[ Table[Text@ Row[{ToString[i] <> ".", allCountryData[[i]][[3]]}, " "], {i, Length[allCountryData]}], 5];
In[5]:=
Click for copyable input
Legended[ListLogLogPlot[allCountryData[[All, {1, 2}]], LabelingFunction -> (First@#2 &), options], Placed[legend, Bottom]]
Out[5]=

Exemplos Relacionados

de en es fr ja ko ru zh