Plotnine 主题 element_blank() 似乎不起作用 - 也许我没有正确导入包?
Plotnine theme element_blank() doesn't seem to work - perhaps I'm not importing the package correctly?
我已经创建了一个状态图并想删除 x 轴和 y 轴,因为它们没有为该图提供任何值。
map_population_by_county = (
ggplot(map_population_by_county_data)
+ geom_map(aes(fill='Population2018'))
+ geom_label(aes(x = 'Longitude', y = 'Latitude', label='Population2018', size=2))
)
map_population_by_county
我希望添加 + theme(axis.text.x=element_blank())
应该删除轴,并且我应该同样能够修改更多内容,例如
+ theme(axis.title.x=element_blank(),
axis.text.x=element_blank(),
axis.ticks.x=element_blank())
但是当我添加 + theme(axis.text.x=element_blank())
时收到错误消息
map_population_by_county = (
ggplot(map_population_by_county_data)
+ geom_map(aes(fill='Population2018'))
+ geom_label(aes(x = 'Longitude', y = 'Latitude', label='Population2018', size=2))
+ theme(axis.text.x=element_blank())
)
map_population_by_county
File "<ipython-input-23-45e23f30fc6a>", line 5
+ theme(axis.text.x=element_blank())
^
SyntaxError: expression cannot contain assignment, perhaps you meant "=="?
添加双等号“==”似乎不对,但我尝试了它并收到了一个新错误,NameError: name 'axis' is not defined
我可能没有正确导入 plotnine 包吗?
为了让 geom_point 等工作,我必须在我使用的 jupyter notebook 中将它们专门导入为 from plotnine import ggplot, aes, geom_map, geom_text, geom_label
。使用 import plotnine as p9
或 from plotnine import *
甚至不适用于上面的地图。我试过添加 from plotnine import theme
,但没有用。
正如@cookesd 所建议的那样 - 将 axis.text.x
(R ggplot 公式)替换为 axis_text_x
for python plotnine 解决了这个问题。
在python中参数名称需要用_
分隔
我已经创建了一个状态图并想删除 x 轴和 y 轴,因为它们没有为该图提供任何值。
map_population_by_county = (
ggplot(map_population_by_county_data)
+ geom_map(aes(fill='Population2018'))
+ geom_label(aes(x = 'Longitude', y = 'Latitude', label='Population2018', size=2))
)
map_population_by_county
我希望添加 + theme(axis.text.x=element_blank())
应该删除轴,并且我应该同样能够修改更多内容,例如
+ theme(axis.title.x=element_blank(),
axis.text.x=element_blank(),
axis.ticks.x=element_blank())
但是当我添加 + theme(axis.text.x=element_blank())
时收到错误消息
map_population_by_county = (
ggplot(map_population_by_county_data)
+ geom_map(aes(fill='Population2018'))
+ geom_label(aes(x = 'Longitude', y = 'Latitude', label='Population2018', size=2))
+ theme(axis.text.x=element_blank())
)
map_population_by_county
File "<ipython-input-23-45e23f30fc6a>", line 5
+ theme(axis.text.x=element_blank())
^
SyntaxError: expression cannot contain assignment, perhaps you meant "=="?
添加双等号“==”似乎不对,但我尝试了它并收到了一个新错误,NameError: name 'axis' is not defined
我可能没有正确导入 plotnine 包吗?
为了让 geom_point 等工作,我必须在我使用的 jupyter notebook 中将它们专门导入为 from plotnine import ggplot, aes, geom_map, geom_text, geom_label
。使用 import plotnine as p9
或 from plotnine import *
甚至不适用于上面的地图。我试过添加 from plotnine import theme
,但没有用。
正如@cookesd 所建议的那样 - 将 axis.text.x
(R ggplot 公式)替换为 axis_text_x
for python plotnine 解决了这个问题。
在python中参数名称需要用_