Plotly Scattermapbox:有没有办法在标记上方和下方包含一些文本?

Plotly Scattermapbox: Is there a way to include some text above and below the markers?(Plotly Scattermapbox:有没有办法在标记上方和下方包含一些文本?)
本文介绍了Plotly Scattermapbox:有没有办法在标记上方和下方包含一些文本?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

In Plotly, using Scattermapbox, is there a way to display some text above and below the markers?

Currently the text only appears when I hover on the markers, and the plot shows only part of the text that I would like to display.

My input data frame df_area is as follows. I would like to display the text contained in both the name column and in the forecast column.

     name   latitude   longitude    forecast
 0   "AK"   2.675000   203.139000   "Cloudy"
 1   "Bd"   2.621000   203.224000   "Cloudy"

However, I can currently only display the text in the forecast column.

fig = go.Figure(go.Scattermapbox(
        lat=df_area["latitude"],
        lon=df_area["longitude"],
        mode="markers+text",
        marker={"size": 10},
        text=df_area["forecast"]))

解决方案

I included an example below, note that this requires a (free) mapbox access token.

import plotly.graph_objects as go
import pandas as pd

mapbox_access_token = 'your-free-token'

df = pd.DataFrame({'name': ['London', 'Oxford'],
                   'latitude': [51.509865, 51.7520],
                   'longitude': [-0.118092, -1.2577],
                   'forecast': ['Cloudy', 'Sunny']})

data = go.Scattermapbox(lat=list(df['latitude']),
                        lon=list(df['longitude']),
                        mode='markers+text',
                        marker=dict(size=20, color='green'),
                        textposition='top right',
                        textfont=dict(size=16, color='black'),
                        text=[df['name'][i] + '<br>' + df['forecast'][i] for i in range(df.shape[0])])

layout = dict(margin=dict(l=0, t=0, r=0, b=0, pad=0),
              mapbox=dict(accesstoken=mapbox_access_token,
                          center=dict(lat=51.6, lon=-0.2),
                          style='light',
                          zoom=8))

fig = go.Figure(data=data, layout=layout)

这篇关于Plotly Scattermapbox:有没有办法在标记上方和下方包含一些文本?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)