示例#1
0
 def test_plotGraphicalCorrelationMatrix(self):
     val = dataplotter.plotGraphicalCorrelationMatrix(
         self.datamanager.cleaned_data)
     self.assertTrue(val)
 def test_plotGraphicalCorrelationMatrix(self):
     val = dataplotter.plotGraphicalCorrelationMatrix(self.datamanager.cleaned_data)
     self.assertTrue(val)
示例#3
0
 def test_plotFeatureImportance(self):
     clf = self.datamanager.binaryTree(self.datamanager.cleaned_data)
     val = dataplotter.plotFeatureImportance(self.datamanager.cleaned_data,
                                             clf)
     self.assertTrue(val)
 def test_plotFeatureImportance(self):
     clf = self.datamanager.binaryTree(self.datamanager.cleaned_data)
     val = dataplotter.plotFeatureImportance(self.datamanager.cleaned_data,clf)
     self.assertTrue(val)