Esempio n. 1
0
 def test_streamz_dataframes_patched(self):
     from streamz.dataframe import Random
     random_df = Random()
     self.assertIsInstance(
         random_df.groupby('x').sum().hvplot, hvPlotTabular)
Esempio n. 2
0
 def test_streamz_seriess_patched(self):
     from streamz.dataframe import Random
     random_df = Random()
     self.assertIsInstance(
         random_df.groupby('x').sum().y.holoplot, HoloPlot)