Pythonda Grafik Gösterimi

 

Merhaba arkadaşlar bu makalemizde basit bir grafik örneği yapıyoruz. Bu örnekte Mysql veritabanını tablosundaki verileri grafikte gösterimini sağlıyorum.



 







Şekil 1

 

 

import mysql.connector

import numpy as np

import matplotlib.pyplot as plt

 

# Connecting to MySql database

# MySql veritabanina baglaniyoruz

 

con1 = mysql.connector.connect(host="localhost",

                               user="root",

                               password="2344",

                               database="book")

cur1 = con1.cursor()

 

# Fecthing data from MySql to my python progamme

# MySql den verileri cekiyoruz

 

cur1.execute("Select Author, Book, Price From worldclassics")

row_count = 5

 

#Fetch fewer rows from Mysql table using cursor’s fetchmany

#bu ornek icin MySql tablosundan ilk 5 satiri cekecegiz

 

result = cur1.fetchmany(row_count)

 

Books = []

Price = []

 

 

for row in result:

    Books.append(row[0]+"\n"+row[1])

    Price.append(row[2])

    

print("Book of Authors = ", Books)

print("Price of Authors = ", Price)

 

# Visualizing data using Matplotlib

# Matplotlib kullanarak verileri grafik olarak

# gosterimini sagliyoruz

 

plt.bar(Books, Price)

plt.ylim(0, 50)

plt.xlabel("Name of Authors")

plt.ylabel("Price of Books")

plt.title("Author's Information")

plt.show()

 

 

Bir makalenin daha sonuna geldik. Bir sonraki makalede görüşmek üzere. Bahadır ŞAHİN

About Bahadır Şahin

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.

0 comments:

Öne Çıkan Yayın

GridView da Seçili Satırı DetailsView da Göstermek

Merhaba arkadaşlar bu makalemizde GridView nesnesi ile birlikte DetailsView nesanesini birlikte kullanacağız. GridView da seçili satırın de...