熊猫插入值以订单加一个
我想在2012年至2100年中制作一个数据框。我想制作一个数据框架,该数据框架在2012年在参考列Stand_age中提供+1(表示例表),而2012年在2012年的+1在2012年和 + + +1 2099年的2100分之一。代码和框架在下面。
for i in list(range(0, 90, 1)):
Stand_Age[i+1] = Stand_Age[i] + 1
I want to make a data frame with columns from 2012 to 2100. I would like to make a data frame that gives +1 in 2012 in reference column Stand_Age(example below table), and +1 in 2013 plus +1 in 2012 and +1 in 2100 in 2099 as well. Code and the frame are below.
for i in list(range(0, 90, 1)):
Stand_Age[i+1] = Stand_Age[i] + 1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不应使用
stand_age [i+1]
,而是对于许多行,它需要
最小的工作代码:
结果:
You shouldn't use
Stand_Age[i+1]
but ratherAnd for many rows it would need
Minimal working code:
Result: