Questions tagged [chartify]

10 questions
4
votes
1 answer

How do I set the order of a grouped bar chart with Chartify?

How can users change the order of the grouped bars in the example below? ch = chartify.Chart(blank_labels=True, x_axis_type='categorical') ch.plot.bar( data_frame=quantity_by_fruit_and_country, categorical_columns=['fruit', 'country'], …
chalpert
  • 252
  • 1
  • 8
2
votes
1 answer

Create helm chart on the fly

I have a requirement to create helm charts in a Jenkins pipeline. As I understand, helmfile makes it easier to deploy helm charts across environments, but it does not help create helm charts. I have looked at chartify. It looks like it is no longer…
Att A
  • 165
  • 1
  • 2
  • 7
1
vote
1 answer

Adding Legend to Grouped Bar Chart in Chartify

I have the following Chartify code snippet. ch = chartify.Chart(blank_labels=True, x_axis_type='categorical', layout="slide_100%") ch.set_title("Grouped bar chart") ch.set_subtitle( "Pass a list to group by multiple factors. Color grouped by…
1
vote
1 answer

ERROR:zygote_host_impl_linux.cc(89) - Chartify

I'm trying the new library(Chartify) provided by Spotify Team. On running the code below, I'm receiving the following error: import chartify import pandas as pd file = "./data/Social_Network_Ads.csv" data = pd.read_csv(file, sep = ',') chart =…
LITDataScience
  • 380
  • 5
  • 14
1
vote
2 answers

How to add multiple Y axis with chartify to draw Elbow curves

I'd like to create a line chart but with 2 distinct Y axis with a different scale to replace this piece of code which generates 2 charts: ch = chartify.Chart(blank_labels=True) ch.set_title("Elbow method with Euclidian distance") ch.plot.line( …
0
votes
1 answer

Chartify: how to pass a Selenium WebDriver?

The following example should work, but it requires the selenium package (as I understand, under the hood chartify builds an interactive chart using the bokeh package and takes a screenshot with selenium) import…
Alex F
  • 756
  • 2
  • 9
  • 24
0
votes
1 answer

How do I add grid lines to Chartify plots?

How do I add grid lines to a Chartify plot? This is what my code looks like: ch = chartify.Chart(blank_labels=True, x_axis_type="linear") ch.plot... (plotting my data) ch.show("png")
Andreascmj
  • 49
  • 7
0
votes
1 answer

How to display data from two columns in chartify heatmap?

Using the example from the documentation, the heatmap is built and displays the total_price in each cell. I want to add data from another column, e.g. 'fruit' to be displayed below the total_price in each cell. How do I do that? Adding screenshot of…
msoderstrom
  • 537
  • 1
  • 7
  • 14
0
votes
3 answers

How to install chartify on jupyter notebook?

I am unable to install and use spotify's visualization module which is called chartify. https://github.com/spotify/chartify In the installation it claims I only need to pip3 install it which I did using cmd. Now I have opened my jupyter notebook,…
Marcel
  • 11
  • 3
-1
votes
1 answer

Python Chartify Library: chromedriver permission issues

I am trying to use the Python library Chartify (Py3) though when I try to show my graph as 'png' I get an error. # Generate example data data = chartify.examples.example_data() # Plot the data ch = chartify.Chart(blank_labels=True,…
Zay Atia
  • 61
  • 1
  • 7