In a jupyter notebook, I run
import matplotlib as mpl
import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
import seaborn as sns
import scipy.stats as stat
and then in another cell, I run sns.set_theme(), and I get the following error
AttributeError: module 'seaborn' has no attribute 'set_theme'.
But it should according to https://seaborn.pydata.org/tutorial/aesthetics.html
Why is that?