We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Might be doable via trigger_script but requires:
trigger_script
Classic UDF sample:
import pandas as pd import matplotlib.pyplot as plt import xlwings as xw import seaborn as sns @xw.func @xw.arg('corr', pd.DataFrame) def corr_plot(corr, caller): ax = sns.heatmap(corr, cmap='coolwarm', vmin=-1, vmax=1, linewidths=.5, xticklabels=True, yticklabels=True) ax.tick_params(left=False, bottom=False) plt.yticks(rotation=0) plt.xticks(rotation=90) caller.sheet.pictures.add(ax.get_figure(), top=caller.offset(row_offset=1).top, left=caller.left, name='CorrPlot', update=True) return '<Corr Plot>'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Might be doable via
trigger_script
but requires:Classic UDF sample:
The text was updated successfully, but these errors were encountered: