Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: paired t testchart control migration #9916

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions superset-frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion superset-frontend/package.json
Expand Up @@ -77,7 +77,7 @@
"@superset-ui/legacy-plugin-chart-iframe": "^0.13.16",
"@superset-ui/legacy-plugin-chart-map-box": "^0.13.16",
"@superset-ui/legacy-plugin-chart-markup": "^0.13.12",
"@superset-ui/legacy-plugin-chart-paired-t-test": "^0.13.5",
"@superset-ui/legacy-plugin-chart-paired-t-test": "^0.13.21",
"@superset-ui/legacy-plugin-chart-parallel-coordinates": "^0.13.20",
"@superset-ui/legacy-plugin-chart-partition": "^0.13.11",
"@superset-ui/legacy-plugin-chart-pivot-table": "^0.13.10",
Expand Down
101 changes: 0 additions & 101 deletions superset-frontend/src/explore/controlPanels/PairedTtest.js

This file was deleted.

2 changes: 0 additions & 2 deletions superset-frontend/src/setup/setupPlugins.ts
Expand Up @@ -32,7 +32,6 @@ import DeckScatter from '../explore/controlPanels/DeckScatter';
import DeckScreengrid from '../explore/controlPanels/DeckScreengrid';
import EventFlow from '../explore/controlPanels/EventFlow';
import FilterBox from '../explore/controlPanels/FilterBox';
import PairedTtest from '../explore/controlPanels/PairedTtest';
import Separator from '../explore/controlPanels/Separator';
import TimeTable from '../explore/controlPanels/TimeTable';

Expand All @@ -44,7 +43,6 @@ export default function setupPlugins() {
.registerValue('country_map', CountryMap)
.registerValue('event_flow', EventFlow)
.registerValue('filter_box', FilterBox)
.registerValue('paired_ttest', PairedTtest)
.registerValue('separator', Separator)
.registerValue('time_table', TimeTable)
.registerValue('deck_arc', DeckArc)
Expand Down