()
| 61 | |
| 62 | |
| 63 | def test_geo_text_data(): |
| 64 | data = [['i like cats alot', 'cats r pretty cool', 'cats are better than dogs'], |
| 65 | ['dogs rule the haus', 'dogs are my jam', 'dogs are a mans best friend']] |
| 66 | geo = plot(data, show=False) |
| 67 | assert isinstance(geo, DataGeometry) |
| 68 | assert geo.transform(data)[0].shape[1]==3 |
| 69 | assert geo.semantic == 'LatentDirichletAllocation' |
| 70 | assert isinstance(geo.plot(show=False), DataGeometry) |
| 71 | |
| 72 | |
| 73 | def test_geo_text_data_marker(): |