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

Release 0.24.9.30 #359

Merged
merged 9 commits into from
Oct 1, 2024
Prev Previous commit
Next Next commit
refactor examples/FinanceBench/visualization module
  • Loading branch information
TheVinhLuong102 committed Sep 30, 2024
commit 1f813852551a7b14e3525aff05abb245795dbfae
2 changes: 1 addition & 1 deletion examples/FinanceBench/visualization.py
Original file line number Diff line number Diff line change
@@ -40,7 +40,7 @@ def plot_data(ax, data, color, label=None):


# Create the figure and two subplots
fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(18, 10), subplot_kw=dict(projection='polar'))
fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(18, 10), subplot_kw={'projection': 'polar'})


# Function to set up the polar plot (background, grid, labels)