Spaces:
Sleeping
Sleeping
Commit ·
fdb689f
1
Parent(s): 3539335
Update plugin manager to inlcude new plots
Browse files
src/ai_dashboard/plugin_manager.py
CHANGED
|
@@ -12,6 +12,9 @@ from .plot_plugin.scatter_matrix import ScatterMatrixPlugin
|
|
| 12 |
from .plot_plugin.heatmap_plot import CorrelationHeatmapPlugin
|
| 13 |
from .plot_plugin.grouped_bar_plot import GroupedBarPlotPlugin
|
| 14 |
from .plot_plugin.hexbin_plot import HexbinPlotPlugin
|
|
|
|
|
|
|
|
|
|
| 15 |
|
| 16 |
|
| 17 |
class PluginManager:
|
|
@@ -28,9 +31,12 @@ class PluginManager:
|
|
| 28 |
BoxPlotPlugin(dataframe),
|
| 29 |
ViolinPlotPlugin(dataframe),
|
| 30 |
ScatterMatrixPlugin(dataframe),
|
|
|
|
| 31 |
CorrelationHeatmapPlugin(dataframe),
|
| 32 |
GroupedBarPlotPlugin(dataframe),
|
| 33 |
HexbinPlotPlugin(dataframe),
|
|
|
|
|
|
|
| 34 |
]
|
| 35 |
self.tables = [SampleTablePlugin(dataframe)]
|
| 36 |
|
|
|
|
| 12 |
from .plot_plugin.heatmap_plot import CorrelationHeatmapPlugin
|
| 13 |
from .plot_plugin.grouped_bar_plot import GroupedBarPlotPlugin
|
| 14 |
from .plot_plugin.hexbin_plot import HexbinPlotPlugin
|
| 15 |
+
from .plot_plugin.tsne import PCATSNEPlotPlugin
|
| 16 |
+
from .plot_plugin.scatter_3d import Scatter3DPlotPlugin
|
| 17 |
+
from .plot_plugin.geo_scatter import GeoPlotPlugin
|
| 18 |
|
| 19 |
|
| 20 |
class PluginManager:
|
|
|
|
| 31 |
BoxPlotPlugin(dataframe),
|
| 32 |
ViolinPlotPlugin(dataframe),
|
| 33 |
ScatterMatrixPlugin(dataframe),
|
| 34 |
+
PCATSNEPlotPlugin(dataframe),
|
| 35 |
CorrelationHeatmapPlugin(dataframe),
|
| 36 |
GroupedBarPlotPlugin(dataframe),
|
| 37 |
HexbinPlotPlugin(dataframe),
|
| 38 |
+
Scatter3DPlotPlugin(dataframe),
|
| 39 |
+
GeoPlotPlugin(dataframe),
|
| 40 |
]
|
| 41 |
self.tables = [SampleTablePlugin(dataframe)]
|
| 42 |
|