我正在尝试向实体添加一个新变量。
我正在尝试添加一个变量,如下所示:
es['Product'].add_variable("inventory", data=inventory_series)
但是我收到了这个错误:
TypeError: 'Series' objects are mutable, thus they cannot be hashed
如果我将类型参数指定为 int,
es['Product'].add_variable("inventory", data=inventory_series)
我得到一个不同的错误:
--> 558 new_v = type(new_id, entity=self)
559 self.variables.append(new_v)
560
TypeError: 'entity' is an invalid keyword argument for this function
是否有另一种方法可以向实体添加新变量?
谢谢,