This repository has been archived by the owner on Jul 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
2,500 additions
and
21 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
https://data.worldbank.org/country/turkey | ||
https://www.kaggle.com/huseyinkilic/turkeys-mobile-banking-user-commentary-analysis | ||
---------------------------------------- | ||
https://bkm.com.tr/en/e-commerce-transactions/(turkey) | ||
https://bkm.com.tr/en/secilen-aya-ait-sektorel-gelisim/?filter_year=2020&filter_month=1&List=List | ||
----------------------------------------------- | ||
https://github.com/Glorf/recipenlg | ||
---------------------------- | ||
https://fred.stlouisfed.org/tags/series?t=e-commerce(usa) | ||
|
||
------------------------ | ||
https://ec.europa.eu/eurostat/statistics-explained/index.php?title=E-commerce_statistics(europe) | ||
---------------------------------- | ||
|
||
http://blog.sanalmimarlar.com/tag/e-ticaret-hacmi/ | ||
https://www.digitaltalks.org/2020/09/13/bkm-2020-yili-agustos-ayi-verilerini-acikladi/ (makale icin) | ||
|
||
https://www.researchgate.net/publication/327348324_Turkiye%27de_E-Ticaret_Sektorunun_Yillara_Gore_Gelisimi | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
import pandas as pd | ||
import matplotlib | ||
import matplotlib.pyplot as plt | ||
import seaborn as sns | ||
import plotly.graph_objects as go | ||
|
||
# american ecommerce data | ||
dataset_A = pd.read_excel("ecomretailfixed.xls") | ||
dataset_turkey = pd.read_excel("TurkeyData.xlsx") | ||
|
||
date_A = dataset_A["observation_date"] | ||
ecomsa_A = dataset_A["ECOMSA"] | ||
to_tl = [] | ||
for price in ecomsa_A: | ||
to_tl.append(price * 7.84) | ||
|
||
# Türkiye ecommerse data | ||
date_E = dataset_turkey["observation_date"] | ||
ecomsa_E = dataset_turkey["ECOMSA"] | ||
|
||
|
||
plt.style.use('seaborn-darkgrid') | ||
#plt.plot(date_A,to_tl,label="Amerika",marker=3) | ||
plt.plot(date_A,ecomsa_A,label="Amerika",marker=3) | ||
plt.plot(date_E,ecomsa_E,label="Türkiye",marker=2) | ||
|
||
plt.title("Türkiye ve Amerika E-Ticaret Piyasa Hacmi Karşılaştırması (TRY)") | ||
plt.xlabel("Tarihler") | ||
plt.ylabel("Milyar (TRY)") | ||
|
||
plt.legend() | ||
plt.show() | ||
#plt.savefig('Matplotlib_save_plot.png') | ||
|
||
turkey_2018 = dataset_turkey["ECOMSA"][28:32] | ||
total_2018=0 | ||
for price in turkey_2018: | ||
total_2018 += price | ||
|
||
|
||
turkey_2019 = dataset_turkey["ECOMSA"][32:36] | ||
total_2019=0 | ||
for price2 in turkey_2019: | ||
total_2019 += price2 | ||
df = pd.DataFrame([[total_2018,2018],[total_2019,2019]],columns=list("AB")) | ||
|
||
|
||
|
||
|
||
labels = df["B"] | ||
values = df["A"] | ||
|
||
|
||
fig = go.Figure(data=[go.Pie(labels=labels, values=values,title="Türkiye 2018-2019 E-Ticaret Hacmi\b", textinfo='label+percent', | ||
insidetextorientation='radial' | ||
)]) | ||
fig.show() | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.