Skip to content

Commit 484ee22

Browse files
author
sreeder
committed
get filter to highlight selected points
1 parent 7af18f4 commit 484ee22

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

odmtools/odmservices/edit_service.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,8 +210,10 @@ def change_value_threshold(self, value, operator):
210210
#Duplicate values filter
211211
def duplicate_value_filter(self):
212212
df = self._test_filter_previous()
213-
self.filtered_dataframe= df.index.get_duplicates()
213+
#self.filtered_dataframe= df[df.index.get_duplicates()]
214+
self.filtered_dataframe= df[df.index.isin(df.index.get_duplicates())]
214215
#self.filtered_dataframe = df[df['DataValue'] < value]
216+
print "dup value worked"
215217

216218

217219
def select_points_tf(self, tf_list):

0 commit comments

Comments
 (0)