Private
Public Access
1
0

ix to loc

This commit is contained in:
Sander Roosendaal
2020-07-16 14:26:57 +02:00
parent b25b600c64
commit f38bd1a50f
2 changed files with 5 additions and 5 deletions

View File

@@ -1189,7 +1189,7 @@ class FusionMetricChoiceForm(ModelForm):
labeldict = {key:value for key,value in self.fields['columns'].choices}
for label in labeldict:
if df.ix[:,label].std() == 0:
if df.loc[:,label].std() == 0:
try:
formaxlabels2.pop(label)
except KeyError: