Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> Python

पायथन पांडा - जांचें कि क्या CustomBusinessHour ऑफसेट को सामान्य किया गया है या नहीं

यह जाँचने के लिए कि CustomBusinessHour ऑफ़सेट को सामान्य किया गया है या नहीं, पंडों में CustomBusinessHour.normalize प्रॉपर्टी का उपयोग करें।

सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -

import pandas as pd

पंडों में टाइमस्टैम्प ऑब्जेक्ट सेट करें -

timestamp = pd.Timestamp('2021-10-25 08:35:10')

CustomBusinessHour ऑफ़सेट बनाएँ। CustomBusinessHour डेटऑफ़सेट उपवर्ग है। हमने "सामान्यीकृत करें" पैरामीटर का उपयोग करके CustomBusinessDay को सामान्य कर दिया है -

cbhOffset = pd.tseries.offsets.CustomBusinessHour(n = 3, weekmask = 'Mon Tue Wed Fri Sat' ,normalize=True)

ऑफ़सेट को टाइमस्टैम्प में जोड़ें और अपडेटेड टाइमस्टैम्प प्रदर्शित करें -

print("\nUpdated Timestamp...\n",timestamp + cbhOffset)

जांचें कि CustomBusinessHour ऑफसेट सामान्यीकृत है या नहीं -

print("\nThe CustomBusinessHour Offset is normalized ?\n", cbhOffset.normalize)

उदाहरण

निम्नलिखित कोड है -

import pandas as pd

# Set the timestamp object in Pandas
timestamp = pd.Timestamp('2021-10-25 08:35:10')

# Display the Timestamp
print("Timestamp...\n",timestamp)

# Create the CustomBusinessHour Offset
# CustomBusinessHour is the DateOffset subclass
# Weekmask of valid business days
# We have normalized the CustomBusinessDay using the "normalize" parameter
cbhOffset = pd.tseries.offsets.CustomBusinessHour(n = 3, weekmask = 'Mon Tue Wed Fri Sat',normalize=True)

# Display the CustomBusinessHour Offset
print("\nCustomBusinessHour Offset...\n",cbhOffset)

# Add the offset to the Timestamp and display the Updated Timestamp
print("\nUpdated Timestamp...\n",timestamp + cbhOffset)

# Return frequency applied on the given CustomBusinessHour Offset object as a string
print("\nFrequency applied on the given CustomBusinessHour Offset object...\n",cbhOffset.freqstr)

# return the name of the frequency applied on the given CustomBusinessHour object
print("\nThe name of the frequency on the CustomBusinessHour object..\n", cbhOffset.name)

# check whether the CustomBusinessHour Offset is normalized or not
print("\nThe CustomBusinessHour Offset is normalized ?\n", cbhOffset.normalize)

आउटपुट

यह निम्नलिखित कोड उत्पन्न करेगा -

Timestamp...
 2021-10-25 08:35:10

CustomBusinessHour Offset...
 <3 * CustomBusinessHours: CBH=09:00-17:00>

Updated Timestamp...
 2021-10-25 00:00:00

Frequency applied on the given CustomBusinessHour Offset object...
 3CBH

The name of the frequency on the CustomBusinessHour object..
 CBH

The CustomBusinessHour Offset is normalized ?
 True

  1. पायथन पांडा - यूटीसी ऑफसेट समय प्राप्त करें

    UTC ऑफ़सेट समय प्राप्त करने के लिए, timestamp.utcoffset() . का उपयोग करें . सबसे पहले, आवश्यक पुस्तकालयों को आयात करें - import pandas as pd टाइमस्टैम्प बनाना timestamp = pd.Timestamp('2021-10-16T15:12:34.261811624', tz='UTC') UTC दिन और समय के साथ नया टाइमस्टैम्प timestamp.utcnow

  1. जाँच करें कि किसी संख्या में दिए गए आधार में लगातार 0 है या पायथन का उपयोग नहीं कर रहा है

    जब यह जांचने की आवश्यकता होती है कि किसी संख्या में किसी विशिष्ट आधार के लगातार शून्य हैं, तो एक विधि परिभाषित की जाती है, जो संख्या और आधार को पैरामीटर के रूप में लेती है, और आधार मौजूद है या नहीं, इसके आधार पर हां या नहीं को वापस करने के लिए दूसरी विधि का उपयोग करती है। नीचे उसी का एक प्रदर्शन ह

  1. जांचें कि दी गई संख्या यूक्लिड संख्या है या नहीं पायथन में

    मान लीजिए कि हमारे पास एक संख्या n है। हमें जांचना है कि n यूक्लिड संख्या है या नहीं। जैसा कि हम जानते हैं कि यूक्लिड संख्याएं पूर्णांक होती हैं जिन्हें . के रूप में दर्शाया जा सकता है n=Pn +1 प्रथम n अभाज्य संख्याओं का गुणनफल कहाँ है। इसलिए, यदि इनपुट n =211 की तरह है, तो आउटपुट ट्रू होगा जिसे