matplotlib
Audited by Runlayer on Feb 22, 2026
Malicious tool definition detected
Tool: SKILL.md [1/2] Description: --- name: matplotlib description: "Foundational plotting library.
Tool: SKILL.md [2/2] Description: 6.
Malicious tool definition detected
Tool: references/api_reference.md [1/2] Description: # Matplotlib API Reference This document provides a quick reference for the most commonly used matplotlib classes and methods.
Tool: references/api_reference.md [2/2]
Malicious tool definition detected
Tool: references/common_issues.md [1/2] Description: # Matplotlib Common Issues and Solutions Troubleshooting guide for frequently encountered matplotlib problems.
Tool: references/common_issues.md [2/2] Description: small offset ax.plot(x, data + 1e-10) ax.set_yscale('log') ``` ### Issue: Dates Not Displaying Correctly **Problem:** Date axis shows numbers instead of dates **Solution:** ```python import matplotlib.dates as mdates import pandas as pd # Convert to datetime if needed dates = pd.to_datetime(date_strings) ax.plot(dates, values) # Format date axis ax.xaxis.set_major_formatter(mdates.DateFormatter('%Y-%m-%d')) ax.xaxis.set_major_locator(mdates.Da
Malicious tool definition detected
Tool: references/plot_types.md [1/2] Description: # Matplotlib Plot Types Guide Comprehensive guide to different plot types in matplotlib with examples and use cases.
Tool: references/plot_types.md [2/2] Description: Z, levels=15, cmap='viridis') ax.set_xlabel('X') ax.set_ylabel('Y') ax.set_zlabel('Z') ``` ## 13.
Malicious tool definition detected
Tool: references/styling_guide.md [1/2] Description: # Matplotlib Styling Guide Comprehensive guide for styling and customizing matplotlib visualizations.
Tool: references/styling_guide.md [2/2]
Malicious tool definition detected
Tool: scripts/plot_template.py [1/2] Description: #!/usr/bin/env python3 """ Matplotlib Plot Template Comprehensive template demonstrating various plot types and best practices.
Tool: scripts/plot_template.py [2/2]
Malicious tool definition detected
Tool: scripts/style_configurator.py [1/2] Description: #!/usr/bin/env python3 """ Matplotlib Style Configurator Interactive utility to configure matplotlib style preferences and generate custom style sheets.
Tool: scripts/style_configurator.py [2/2] Description: python style_configurator.py --interactive """ ) parser.add_argument('--preset', type=str, choices=list(STYLE_PRESETS.keys()), help='Use a predefined style preset') parser.add_argument('--output', type=str, help='Save style to .mplstyle file') parser.add_argument('--preview', action='store_true', help='Show style preview') parser.add_argument('--list', action='store_true', help='List available presets') parser.add_argument('--interactive', a