コード例 #1
0
ファイル: testpatch.py プロジェクト: wsheffel/hvplot
 def test_streamz_dataframes_patched(self):
     from streamz.dataframe import Random
     random_df = Random()
     self.assertIsInstance(
         random_df.groupby('x').sum().hvplot, hvPlotTabular)
コード例 #2
0
ファイル: testpatch.py プロジェクト: CurtLH/holoplot
 def test_streamz_seriess_patched(self):
     from streamz.dataframe import Random
     random_df = Random()
     self.assertIsInstance(
         random_df.groupby('x').sum().y.holoplot, HoloPlot)