lets_plot.theme_minimal2¶
- lets_plot.theme_minimal2()¶
Default theme similar to theme_minimal() but with x axis line and only major grid lines.
- Returns
- FeatureSpec
Theme specification.
Examples
1import numpy as np 2from lets_plot import * 3LetsPlot.setup_html() 4np.random.seed(42) 5data = {'x': np.random.normal(size=1000)} 6ggplot(data, aes(x='x')) + geom_histogram() + \ 7 theme_minimal2()