Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9099c79

Browse files
authored
EXA Fix plot_map_data_to_normal.py example legend (#19930)
Lambda was meant to be on a different line.
1 parent 9b7ff27 commit 9099c79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/preprocessing/plot_map_data_to_normal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@
132132
ax.hist(X_trans, color=color, bins=BINS)
133133
title = 'After {}'.format(meth_name)
134134
if lmbda is not None:
135-
title += r'\n$\lambda$ = {}'.format(lmbda)
135+
title += '\n$\\lambda$ = {}'.format(lmbda)
136136
ax.set_title(title, fontsize=FONT_SIZE)
137137
ax.tick_params(axis='both', which='major', labelsize=FONT_SIZE)
138138
ax.set_xlim([-3.5, 3.5])

0 commit comments

Comments
 (0)