This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| Violin Plot Distribution Analysis for ARO-HCP Upgrades | |
| Generates version activation time distribution visualization using violin plots | |
| to show the full distribution of data. | |
| Outliers removed using IQR (Interquartile Range) method - standard statistical approach. | |
| """ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| Comprehensive ARO-HCP Upgrade Analysis Visualization Script | |
| This script generates three key visualizations from ARO-HCP upgrade data: | |
| 1. STACKED PHASE DURATION GRAPH (upgrade_phases_stacked_by_week.png) | |
| - Shows breakdown of time spent in each upgrade phase by week | |
| - Phases: Creation→Backend, Backend Selection, Backend→CS Pickup, | |
| CS Pickup→Trigger, Hypershift Reaction |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| Time from cluster creation to backend upgrade decision | |
| Combines all findings into one complete view | |
| """ | |
| import json | |
| import matplotlib.pyplot as plt | |
| import numpy as np | |
| from pathlib import Path |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| Create separate cluster upgrade analysis graphs for each cluster | |
| """ | |
| import json | |
| import matplotlib | |
| matplotlib.use('Agg') | |
| import matplotlib.pyplot as plt | |
| import matplotlib.dates as mdates | |
| from datetime import datetime |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const { typeDefs, resolvers, contextCreator, services } = buildGraphbackAPI(schema, { | |
| dataProviderCreator: createKnexDbProvider(dbConfig), | |
| plugins: [] | |
| }); | |
| const apolloServer = new ApolloServer({ | |
| typeDefs, | |
| resolvers, | |
| context: contextCreator | |
| }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| @oneToOne key: 'user_id' | |
| """ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| @oneToOne(key: 'user_id') | |
| """ |