我正在尝试Spotify团队提供的新库(Chartify(。在运行下面的代码时,我收到以下错误:
import chartify
import pandas as pd
file = "./data/Social_Network_Ads.csv"
data = pd.read_csv(file, sep = ',')
chart = chartify.Chart(blank_labels=True, y_axis_type='categorical', x_axis_type='linear')
chart.plot.scatter(
data_frame=data,
categorical_columns='Gender',
numeric_column='EstimatedSalary',
color_column='EstimatedSalary')
chart.style.color_palette.reset_palette_order()
chart.set_title("Scatter Plot w.r.t. Salaries of different Gender")
chart.set_subtitle("Labels for specific observations.")
chart.show()
[9643:9643:1127/175201.738360:ERROR:zygote_host_impl_linux.cc(89)] Running as root without --no-sandbox is not supported. See https://crbug.com/638180.
虽然HTML正在创建中,但在打开HTML时,它会给出一个空白页面。
这是一个老问题,但如果您面临类似的问题。。。该消息与执行X工具时的操作系统有关。
作为一种变通方法,这帮助我在尝试执行不同的二进制文件时,在CentOS 7.7上解决了这个问题!
export QTWEBENGINE_DISABLE_SANDBOX=1