我有一个 Dataframe ,其中包含一个周列和每周捕获的数据。
# Import pandas library
import pandas as pd
# initialize list of lists
data = [['20', 10],
['21', 15],
['23', 14],
['40', 50],
['41', 56]]
# Create the pandas DataFrame
df = pd.DataFrame(data, columns=['weeks', 'counts'])
# print dataframe.
df
现在,我将使用此数据绘制折线图。请注意,从第23周至第40周,我们没有数据。因此,我打算在绘图中跳过这几周,只绘制具有可用数据的这些周的折线图。
Plotly命令一切自动,它包括失踪的几周,这可能会导致问题时,它被解释。
看看plotly怎么做
import plotly.express as px
#df = px.data.gapminder().query("country=='Canada'")
fig = px.line(df, x="weeks", y="counts", title='Recruitment per Week')
#fig.write_image("images/Recruit.jpeg")
fig.show()
我怎么能在图表上有一个从第23周至第40周的休息。就像折线图一样,我们在这些特定的周没有数据。
2条答案
按热度按时间lnlaulya1#
您 是否 需要 经常 重复 此 操作 ? 您 是否 需要 灵活 的 解决 方案 或 仅 适用 于 此 情况 的 解决 方案 ? 您 可以 首先 检查 数据 帧 中 的 连续 值 , 然后 在 同一 图形 中 为 每个 连接 的 时段 创建 新 的 轨迹 。 您 还 可以 为 它们 指定 相同 的 颜色 , 以 使 其 更 易于 阅读 。 您 可以 手动 为 每个 连接 的 时段 创建 单独 的 数据 帧 , 然后 为 每个 数据 帧 创建 轨迹 。
ktca8awb2#
首先,我会重新索引数据,以便将没有数据的周数计入。