python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
how can i print a histogram based on the counters of each flower species?(x axis- name of the flower y axis-the amount)
#counters
counter_setosa = 0
counter_versicolor = 0
counter_virginica = 0
#checking the name of the flowers and adding them to their counters
for item in df['species']:
#for setosas(in loo...
Mike Megrelishvili
Votes: 0
Answers: 1
Changing the order of the slices in a pie chart in R
I am trying to change the order of the slices in a pie chart in R. I want the largest value (38, which belongs to Agricultural intensification) on the right of 0 degrees, the second largest slice (20,...
Stefanie van den Berg
Votes: 0
Answers: 1
How to create a pie-chart from pandas DataFrame?
I have a dataframe, with Count arranged in decending order, that looks something like this:
df = pd.DataFrame({'Topic': ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M'],
...
AneesBaqir
Votes: 0
Answers: 3
Victory Native PieChart titles nested
I am using victory-native chart to render a pie chart but titles nested.Here is my code:
<VictoryPie
animate={{
duration: 1000,
easing: 'bounce',
...
Ahmet Hoşca
Votes: 0
Answers: 1