當前位置: 首頁>>代碼示例>>Python>>正文


Python data_operations.DataCleaning類代碼示例

本文整理匯總了Python中OperationUtils.data_operations.DataCleaning的典型用法代碼示例。如果您正苦於以下問題:Python DataCleaning類的具體用法?Python DataCleaning怎麽用?Python DataCleaning使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了DataCleaning類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: _prepareData

    def _prepareData(self, column, cleanIt=True):
        values = []
        allCars = self.database.getAllCars()
        if cleanIt:
            allCars = DataCleaning.cleanAllData(allCars)
        columnId = COLUMNIDDICTIONARY.get(column, 0)
        for car in allCars:
            values.append(car[columnId])

        return values
開發者ID:madamczak,項目名稱:cardata,代碼行數:10,代碼來源:plots.py

示例2: _addNewVersionCategory

    def _addNewVersionCategory(self, item, model, ver, count):
        versionName = DataCleaning.normalize(ver[0])
        pattern1 = re.compile(".*\(\d+-")
        pattern2 = re.compile(".*T\d")

        if not self.db.brandLinkIsPresentInDatabase(ver[1]) \
                and (pattern1.match(str(versionName)) or pattern2.match(str(versionName))):
            self.db.insertVersionToDatabase(count, item[0], model[0], ver[0], ver[1])
            return 1
        else:
            return 0
開發者ID:madamczak,項目名稱:cardata,代碼行數:11,代碼來源:AllegroBrandsCollector.py

示例3: test_normalize_number_of_doors

    def test_normalize_number_of_doors(self):
        self.assertEqual(DataCleaning.normalizeNumberOfDoors("2"), "2/3")
        self.assertEqual(DataCleaning.normalizeNumberOfDoors("3"), "2/3")
        self.assertEqual(DataCleaning.normalizeNumberOfDoors("2/3"), "2/3")

        self.assertEqual(DataCleaning.normalizeNumberOfDoors("4"), "4/5")
        self.assertEqual(DataCleaning.normalizeNumberOfDoors("5"), "4/5")
        self.assertEqual(DataCleaning.normalizeNumberOfDoors("4/5"), "4/5")

        self.assertEqual(DataCleaning.normalizeNumberOfDoors("30"), "unknown")
開發者ID:madamczak,項目名稱:cardata,代碼行數:10,代碼來源:unit_tests.py

示例4: test_strips_number_of_doors

 def test_strips_number_of_doors(self):
     toStrip = "4/5"
     self.assertEqual(DataCleaning.stripDecimalValue(toStrip), "4/5")
開發者ID:madamczak,項目名稱:cardata,代碼行數:3,代碼來源:unit_tests.py

示例5: test_internationalizes_gearbox_half_automatic2

 def test_internationalizes_gearbox_half_automatic2(self):
     toInternationalize = "poautomatyczna (asg, tiptronic)"
     self.assertEqual(DataCleaning.internationalizeGearbox(toInternationalize), "half-automatic")
開發者ID:madamczak,項目名稱:cardata,代碼行數:3,代碼來源:unit_tests.py

示例6: test_normalizes_color3

 def test_normalizes_color3(self):
     toNormalize = u"\n    Żółty        \n"
     self.assertEqual(DataCleaning.normalize(toNormalize), "zolty")
開發者ID:madamczak,項目名稱:cardata,代碼行數:3,代碼來源:unit_tests.py

示例7: test_normalizes_power

 def test_normalizes_power(self):
     toNormalize = u"200KM"
     self.assertEqual(DataCleaning.normalize(toNormalize), "200km")
開發者ID:madamczak,項目名稱:cardata,代碼行數:3,代碼來源:unit_tests.py

示例8: test_strips_simple_literal

 def test_strips_simple_literal(self):
     toStrip = "AAAaaa"
     self.assertEqual(DataCleaning.stripDecimalValue(toStrip), "")
開發者ID:madamczak,項目名稱:cardata,代碼行數:3,代碼來源:unit_tests.py

示例9: test_normalizes_color

 def test_normalizes_color(self):
     toNormalize = u"\n    Biały        \n"
     self.assertEqual(DataCleaning.normalize(toNormalize), "biay")
開發者ID:madamczak,項目名稱:cardata,代碼行數:3,代碼來源:unit_tests.py

示例10: test_clean_year

 def test_clean_year(self):
     self.assertEqual(len(DataCleaning.cleanYear(self.listOfCars)), 1)
開發者ID:madamczak,項目名稱:cardata,代碼行數:2,代碼來源:unit_tests.py

示例11: test_clean_mileage

 def test_clean_mileage(self):
     self.assertEqual(len(DataCleaning.cleanMileage(self.listOfCars)), 1)
開發者ID:madamczak,項目名稱:cardata,代碼行數:2,代碼來源:unit_tests.py

示例12: test_internationalizes_gearbox_cvt2

 def test_internationalizes_gearbox_cvt2(self):
     toInternationalize = "automatyczna bezstopniowa cvt"
     self.assertEqual(DataCleaning.internationalizeGearbox(toInternationalize), "automatic - cvt")
開發者ID:madamczak,項目名稱:cardata,代碼行數:3,代碼來源:unit_tests.py

示例13: test_internationalizes_gearbox_unknown

 def test_internationalizes_gearbox_unknown(self):
     toInternationalize = "aaabbb"
     self.assertEqual(DataCleaning.internationalizeGearbox(toInternationalize), "unknown")
開發者ID:madamczak,項目名稱:cardata,代碼行數:3,代碼來源:unit_tests.py

示例14: test_internationalizes_gearbox_dsg

 def test_internationalizes_gearbox_dsg(self):
     toInternationalize = "automatyczna dwusprzeglowa (dct, dsg)"
     self.assertEqual(DataCleaning.internationalizeGearbox(toInternationalize), "automatic - dct, dsg")
開發者ID:madamczak,項目名稱:cardata,代碼行數:3,代碼來源:unit_tests.py

示例15: test_internationalizes_gearbox_automatic2

 def test_internationalizes_gearbox_automatic2(self):
     toInternationalize = "automatyczna hydrauliczna (klasyczna)"
     self.assertEqual(DataCleaning.internationalizeGearbox(toInternationalize), "automatic")
開發者ID:madamczak,項目名稱:cardata,代碼行數:3,代碼來源:unit_tests.py


注:本文中的OperationUtils.data_operations.DataCleaning類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。