gpt4 book ai didi

python - 如何将日期时间设置为 zaxis 没有错误 : OverflowError: Python int too large to convert to C long for 3D plot

转载 作者:行者123 更新时间:2023-12-04 10:19:29 25 4
gpt4 key购买 nike

我正在尝试绘制一个 3D 图像,其中 z 是时间。
当我尝试将 zaxis 标签设置为 Year, month 时,我收到一个错误。

为了这:

fig = plt.figure()
ax = plt.axes(projection='3d')
ax.scatter3D(df85['Messwert'], df85['average_cux'], df85['Datum'],c=df85['code'], cmap="jet_r")
ax.zaxis.set_major_formatter(dates.DateFormatter('%Y-%M'))


我收到此错误:

OverflowError: Python int too large to convert to C long

<Figure size 432x288 with 1 Axes>


没有设置 zaxis 代码,我得到这个图像:

enter image description here

提前致谢!!!

enter image description here

在“基准”底部:
Name: Datum, Length: 81, dtype: object

最佳答案

发生溢出错误是因为 Matplotlib 的 DateFormatter 无法绘制 np.datetime64 data 直接,这应该是你的数据的情况。您需要将日期显式转换为 datetime.date对象。

请看看这个:
https://matplotlib.org/3.1.1/gallery/recipes/common_date_problems.html

发生溢出错误是因为 Matplotlib 的 DateFormatter 无法绘制 np.datetime64 data 直接,这应该是你的数据的情况。您需要将日期显式转换为 datetime.date对象。

请看看这个:
https://matplotlib.org/3.1.1/gallery/recipes/common_date_problems.html

编辑 :
这可能对你有用。

import matplotlib.pyplot as plt
import matplotlib.dates as mdates
from matplotlib.dates import date2num, DateFormatter
import numpy as np
import pandas as pd
from mpl_toolkits.mplot3d import Axes3D
from datetime import datetime, timedelta

# a test dataframe
df = pd.DataFrame({
'date': np.array([str(datetime(2020,3,30).date()+timedelta(x+1))+' 00:00:00' for x in range(200)], dtype='object'),
'sales': np.random.randint(low=1, high=200, size=200),
'%sales in US' : 30 * np.random.random_sample(size=200) + 20
})

# appropriate type conversions
df['date']= pd.to_datetime(df['date'])
df['date'] = df['date'].apply(date2num)

fig = plt.figure()
ax = plt.axes(projection='3d')
ax.scatter3D(df['sales'], df['%sales in US'], df['date'], c=df['date'], cmap="jet_r")
ax.zaxis.set_major_formatter(matplotlib.dates.DateFormatter('%Y-%M'))
plt.xlabel('sales', fontsize=20)
plt.ylabel('%sales in US', fontsize=16)
ax.set_zlabel('date', fontsize=16)
plt.show()

输出: https://imgur.com/a/WXM07it.jpg

关于python - 如何将日期时间设置为 zaxis 没有错误 : OverflowError: Python int too large to convert to C long for 3D plot,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60929013/

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