Addalin / pyALiDAn

A python implementation of the Atmospheric Lidar Data Augmentation (ALiDAn) framework and a learning pipeline utilizing both ALiDAn's and raw data.
https://github.com/Addalin/pyALiDAn
5 stars 0 forks source link

matplotlib warnings #21

Closed Addalin closed 3 years ago

Addalin commented 3 years ago

C:\Users\addalin\Dropbox\Lidar\lidar_learning\learning_lidar\utils\misc_lidar.py:38: MatplotlibDeprecationWarning: Support for setting the 'text.latex.preamble' or 'pgf.preamble' r cParam to a list of strings is deprecated since 3.3 and will be removed two minor releases later; set it to a single string instead. plt.rcParams['text.latex.preamble'] = [r"\usepackage{amsmath}"]

OmerShubi commented 3 years ago

replaced plt.rcParams['text.latex.preamble'] = [r"\usepackage{amsmath}"] with plt.rcParams['text.latex.preamble'] = r"\usepackage{amsmath}" warning gone