我正在格式化 MongoDB 文档中的原始时间戳。原来的样子是这样的:
"timestamp" : ISODate("2013-03-06T17:10:29Z")
以及格式化的(使用聚合后用作文档的_id):
"_id" : "06-03-13T17:10"
然后我想根据“_id”值(x轴)绘制“数量”(y轴)值
我无法格式化 _id 以便我可以绘制它。
amount = [book["price"] for book in sorted["result"]]
time = [book["_id"] for book in sorted["result"]]
P.plot(amount, time)
P.show()
回报:
ValueError: invalid literal for float(): 06-03-13T15:36