Skip to content

Instantly share code, notes, and snippets.

@AI-MOO
Last active February 5, 2022 18:54
Show Gist options
  • Save AI-MOO/253f6e1192d3e35bdd2cc938603c6e68 to your computer and use it in GitHub Desktop.
Save AI-MOO/253f6e1192d3e35bdd2cc938603c6e68 to your computer and use it in GitHub Desktop.
# استدعاء المكتبات
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
# سحب البيانات
data = pd.read_csv("data/uber-raw-data-sep14.csv")
# التعديل على صيغة التاريخ من شهر/يوم//سنة إلى يوم-شهر-سنة
data["Date/Time"] = data["Date/Time"].map(pd.to_datetime)
data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment