We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d39f3d3 commit d37e16eCopy full SHA for d37e16e
src/file_io/udf.js
@@ -211,6 +211,17 @@ define([
211
'import seaborn as sns',
212
'import plotly.express as px'
213
],
214
+ 'matplotlib customizing': [
215
+ 'import matplotlib.pyplot as plt',
216
+ '%matplotlib inline',
217
+ '',
218
+ "plt.rc('figure', figsize=(12, 8))",
219
220
+ 'from matplotlib import rcParams',
221
+ "rcParams['font.family'] = 'New Gulim'",
222
+ "rcParams['font.size'] = 10",
223
+ "rcParams['axes.unicode_minus'] = False"
224
+ ],
225
'as_float': [
226
'def as_float(x):',
227
' """',
0 commit comments