c5b2346c03ba5b8aaadf6a4037b1939e9f3063a2,tests/test_features/test_radviz.py,RadVizTests,test_integrated_radviz,#RadVizTests#,75
Before Change
X = np.array(self.occupancy[[
"temperature" , "relative_humidity" , "light" , "C02" , "humidity"
]].tolist() )
y = self.occupancy["occupancy" ].astype(int )
After Change
X = self.occupancy[[
"temperature" , "relative_humidity" , "light" , "C02" , "humidity"
]]
X = X.copy().view((float , len(X.dtype.names)))
y = self.occupancy["occupancy" ].astype(int )
visualizer = RadViz()
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 8
Instances Project Name: DistrictDataLabs/yellowbrick
Commit Name: c5b2346c03ba5b8aaadf6a4037b1939e9f3063a2
Time: 2018-03-05
Author: benjamin@bengfort.com
File Name: tests/test_features/test_radviz.py
Class Name: RadVizTests
Method Name: test_integrated_radviz
Project Name: DistrictDataLabs/yellowbrick
Commit Name: c5b2346c03ba5b8aaadf6a4037b1939e9f3063a2
Time: 2018-03-05
Author: benjamin@bengfort.com
File Name: tests/test_features/test_scatter.py
Class Name: ScatterVizTests
Method Name: test_scatter_quick_method
Project Name: DistrictDataLabs/yellowbrick
Commit Name: c5b2346c03ba5b8aaadf6a4037b1939e9f3063a2
Time: 2018-03-05
Author: benjamin@bengfort.com
File Name: tests/test_features/test_scatter.py
Class Name: ScatterVizTests
Method Name: test_integrated_scatter