ОШИБКА: zygote_host_impl_linux.cc (89) - Chartify - PullRequest
0 голосов
/ 27 ноября 2018

Я пробую новую библиотеку (Chartify), предоставленную Spotify Team.При запуске приведенного ниже кода я получаю следующую ошибку:

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 он дает пустую страницу.

...