gpt4 book ai didi

python - 无边界地 block 分布

转载 作者:行者123 更新时间:2023-12-05 08:25:50 26 4
gpt4 key购买 nike

我在 Python 中使用 plotly 来创建由某些分类变量着色的美国县的等值线。由于县非常小,因此图像中的边界线占主导地位。我怎样才能摆脱它们(或将它们的宽度设置为零)?

到目前为止的代码和输出(使用随机数据):

plotly :/image/G3ltp.png

from urllib.request import urlopen
import json
import numpy as np
import plotly.express as px
import pandas as pd

#Read county geography
with urlopen('https://raw.githubusercontent.com/plotly/datasets/master/geojson-counties-fips.json') as response:
buf = response.read()
counties = json.loads(buf.decode('utf-8'))

#Create random data
df = pd.DataFrame(np.random.randn(99999, 1),columns=["val"])
df['category']=df['val']>1
df['fips'] = list(range(1,100000))

#Graph
fig = px.choropleth(df, geojson=counties, locations='fips', color='category',
scope="usa")
fig.show()

最佳答案

关于python - 无边界地 block 分布,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61420022/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com