Commit 12572444 authored by panos's avatar panos

Change the object name from HandleMissingValues to ReplaceMissingValues

parent 9878f5ec
...@@ -22,10 +22,10 @@ Created on 19 Feb 2014 ...@@ -22,10 +22,10 @@ Created on 19 Feb 2014
@author: Panos @author: Panos
''' '''
from StatisticalMeasures import BasicStatisticalMeasures from StatisticalMeasures import StatisticalMeasures
#The HandleMissingValues object #The HandleMissingValues object
class HandleMissingValues(BasicStatisticalMeasures): class ReplaceMissingValues(StatisticalMeasures):
#Three different approaches to handle missing values are included in this object #Three different approaches to handle missing values are included in this object
def ReplaceWithZero(self,mylist): #Replace in the given list the missing values with zero def ReplaceWithZero(self,mylist): #Replace in the given list the missing values with zero
i=0 i=0
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment