kaggle_choose plot type and customer styles
Posted yuyukun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了kaggle_choose plot type and customer styles相关的知识,希望对你有一定的参考价值。
0 setup
配置文件
import pandas as pd pd.plotting.register_matplotlib_converters() import matplotlib.pyplot as plt %matplotlib inline import seaborn as sns print("Setup Complete")
配置checking
import os if not os.path.exists("../input/spotify.csv"): os.symlink("../input/data-for-datavis/spotify.csv", "../input/spotify.csv") from learntools.core import binder binder.bind(globals()) from learntools.data_viz_to_coder.ex6 import * print("Setup Complete")
试用seaborn风格,‘dark’
# Change the style of the figure sns.set_style("dark") # Line chart plt.figure(figsize=(12,6)) sns.lineplot(data=spotify_data)
# Change the style of the figure sns.set_style("darkgrid") # Line chart plt.figure(figsize=(12,6)) sns.lineplot(data=spotify_data)
# Change the style of the figure sns.set_style("whitegrid") # Line chart plt.figure(figsize=(12,6)) sns.lineplot(data=spotify_data)
# Change the style of the figure sns.set_style("white") # Line chart plt.figure(figsize=(12,6)) sns.lineplot(data=spotify_data)
# Change the style of the figure sns.set_style("ticks") # Line chart plt.figure(figsize=(12,6)) sns.lineplot(data=spotify_data)
以上是关于kaggle_choose plot type and customer styles的主要内容,如果未能解决你的问题,请参考以下文章
R语言使用plot函数和lines函数可视化线图(line plot)时图之间的主要区别是由选项type产生的type参数常用参数说明不同type生成的可视化图像对比
R plot legend plot.xy中的错误(xy,type,...):无效的绘图类型
R语言使用R原生函数plot和lines可视化线图并使用lty参数自定义线条类型lwd自定义设置线条的粗细col参数自定义线条颜色(Change R base plot line types)