【发布时间】:2021-05-05 01:23:44
【问题描述】:
我目前有一个 seaborn relplot
harker = sns.relplot(data = majorsLong, x = "SiO2", y = "Wt %", palette = colors,
markers = marks, style = "Lithology", hue = "Lithology",
kind = "scatter", col = "Oxide", col_wrap = 2, s = 150,
facet_kws = {'sharey': False, 'sharex': True},
linestyle = "None", legend = False)
创建了这个图。
我想用这个数字做两件事。首先,我想删除所有子情节标题。其次,我想将每个 y 标签(甚至是内部标签)设置为 "Oxide" + " Wt %",但也不知道该怎么做。
【问题讨论】:
标签: python matplotlib graph seaborn data-science