FutureWarning: get_value is deprecated and will be removed in a future release. Please use .at[] or .iat[] accessors instead print(labels_df.get_value(patients,col=1))

这是因为pandas的版本高了,0.21之后就已经将这个方法干掉了。直接装成0.20之前的就好

原文地址:https://www.cnblogs.com/theWinter/p/8324564.html