Bir çubuk grafiği oluşturdum, çubuğun değerini her bir çubukta nasıl görüntüleyebilirim? Mevcut arsa: Ne almaya çalışıyorum: Kodum: import os import numpy as np import matplotlib.pyplot as plt x = [u'INFO', u'CUISINE', u'TYPE_OF_PLACE', u'DRINK', u'PLACE', u'MEAL_TIME', u'DISH', u'NEIGHBOURHOOD'] y = [160, 167, 137, 18, 120, 36, 155, 130] fig, ax = …
Bunu buldum, ggplot2 ile R'de geom_bar üzerine etiketler nasıl yerleştirilir , ancak etiketleri (sayıları) yalnızca bir çubuğun üzerine koyar. Diyelim ki her x ekseni için iki çubuk, aynı şey nasıl yapılır? Verilerim ve kodum şöyle görünüyor: dat <- read.table(text = "sample Types Number sample1 A 3641 sample2 A 3119 sample1 …
Şanssız bir barplotta x ekseni etiketlerinin 45 derece döndürülmesini sağlamaya çalışıyorum. Aşağıda sahip olduğum kod bu: barplot(((data1[,1] - average)/average) * 100, srt = 45, adj = 1, xpd = TRUE, names.arg = data1[,2], col = c("#3CA0D0"), main = "Best Lift Time to Vertical Drop Ratios of North American Resorts", ylab …
Bir çubuk grafiği çizerken bu hatayı alıyorum ve ondan kurtulamıyorum, hem qplot hem de ggplot'u denedim ama yine de aynı hata. Kodum aşağıdadır: library(dplyr) library(ggplot2) #Investigate data further to build a machine learning model data_country = data %>% group_by(country) %>% summarise(conversion_rate = mean(converted)) #Ist method qplot(country, conversion_rate, data = data_country,geom …