Note
Click here to download the full example code
Adult Census Dataset VisualizationΒΆ
Out:
/home/circleci/project/dabl/plot/supervised.py:546: FutureWarning: The second positional argument of plot is a Series 'y'. If passing a column name, use a keyword.
warnings.warn("The second positional argument of plot is a Series 'y'."
Target looks like classification
Linear Discriminant Analysis training set score: 0.614
/home/circleci/project/dabl/plot/utils.py:374: UserWarning: FixedFormatter should only be used together with FixedLocator
ax.set_xticklabels(
/home/circleci/project/dabl/plot/utils.py:374: UserWarning: FixedFormatter should only be used together with FixedLocator
ax.set_xticklabels(
/home/circleci/project/dabl/plot/utils.py:374: UserWarning: FixedFormatter should only be used together with FixedLocator
ax.set_xticklabels(
/home/circleci/project/dabl/plot/utils.py:374: UserWarning: FixedFormatter should only be used together with FixedLocator
ax.set_xticklabels(
/home/circleci/project/dabl/plot/utils.py:374: UserWarning: FixedFormatter should only be used together with FixedLocator
ax.set_xticklabels(
/home/circleci/project/dabl/plot/utils.py:374: UserWarning: FixedFormatter should only be used together with FixedLocator
ax.set_xticklabels(
/home/circleci/project/dabl/plot/utils.py:374: UserWarning: FixedFormatter should only be used together with FixedLocator
ax.set_xticklabels(
/home/circleci/project/dabl/plot/utils.py:374: UserWarning: FixedFormatter should only be used together with FixedLocator
ax.set_xticklabels(
/home/circleci/project/dabl/plot/utils.py:374: UserWarning: FixedFormatter should only be used together with FixedLocator
ax.set_xticklabels(
# sphinx_gallery_thumbnail_number = 2
from dabl import plot
from dabl.datasets import load_adult
import matplotlib.pyplot as plt
# load the adult census housing dataset
# returns a plain dataframe
data = load_adult()
plot(data, 'income', scatter_alpha=.1)
plt.show()
Total running time of the script: ( 0 minutes 6.529 seconds)