समय के साथ पैटर्न

Python में Exploratory Data Analysis

Izzy Weber

Curriculum Manager, DataCamp

समय के साथ पैटर्न

divorce = pd.read_csv("divorce.csv")
divorce.head()
  marriage_date  marriage_duration
0    2000-06-26                5.0
1    2000-02-02                2.0
2    1991-10-09                10.0
3    1993-01-02                10.0
4    1998-12-11                7.0               
Python में Exploratory Data Analysis

DateTime डेटा इम्पोर्ट करना

  • DateTime डेटा को Pandas में स्पष्ट रूप से बताना होता है

 

divorce.dtypes
marriage_date         object
marriage_duration    float64
dtype: object
Python में Exploratory Data Analysis

DateTime डेटा इम्पोर्ट करना

divorce = pd.read_csv("divorce.csv", parse_dates=["marriage_date"])
divorce.dtypes
marriage_date        datetime64[ns]
marriage_duration           float64
dtype: object
Python में Exploratory Data Analysis

DateTime में कनवर्ट करना

  • pd.to_datetime() आर्ग्युमेंट्स को DateTime डेटा में बदलता है

 

divorce["marriage_date"] = pd.to_datetime(divorce["marriage_date"])
divorce.dtypes
marriage_date        datetime64[ns]
marriage_duration           float64
dtype: object
Python में Exploratory Data Analysis

DateTime डेटा बनाना

divorce.head(2)
   month  day  year  marriage_duration 
0      6   26  2000                5.0 
1      2    2  2000                2.0
divorce["marriage_date"] = pd.to_datetime(divorce[["month", "day", "year"]])
divorce.head(2)
    month  day  year  marriage_duration  marriage_date 

 0      6   26  2000                5.0     2000-06-26 
 1      2    2  2000                2.0     2000-02-02
Python में Exploratory Data Analysis

DateTime डेटा बनाना

  • dt.month, dt.day, और dt.year से पूरी तारीख के हिस्से निकालें
divorce["marriage_month"] = divorce["marriage_date"].dt.month
divorce.head()
    marriage_date  marriage_duration  marriage_month 
 0     2000-06-26                5.0               6 
 1     2000-02-02                2.0               2 
 2     1991-10-09               10.0              10 
 3     1993-01-02               10.0               1 
 4     1998-12-11                7.0              12
Python में Exploratory Data Analysis

समय के साथ पैटर्न को विज़ुअलाइज़ करना

sns.lineplot(data=divorce, x="marriage_month", y="marriage_duration")
plt.show()

शादी के महीने और शादी की अवधि के बीच संबंध दिखाने वाला लाइन प्लॉट

Python में Exploratory Data Analysis

अभ्यास करते हैं!

Python में Exploratory Data Analysis

Preparing Video For Download...