8000 Update README.md · qma09/08_Python_Date_Time_Module@fd42c78 · GitHub
[go: up one dir, main page]

Skip to content

Commit fd42c78

Browse files
authored
Update README.md
1 parent 683708e commit fd42c78

File tree

1 file changed

+19
-7
lines changed

1 file changed

+19
-7
lines changed

README.md

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,28 @@
33

44
## Introduction 👋
55

6-
### What is Pandas in Python?
7-
The most famous python library which is utilized for data analysis is called Pandas. Pandas render extremely optimized performance with back-end source code which is written totally in C or Python. Also, using pandas you can easily familiar with your data by cleaning, transforming, and analyzing it.
6+
### 1. What is Pandas DateTime Module?
7+
Working with dates and times is one of the biggest challenges in programming. Between dealing with time zones, daylight saving time, and different written date formats, it can be tough to keep track of which days and times you’re referencing. Fortunately, the built-in Python datetime module can help you manage the complex nature of dates and times.
88

9-
In Pandas, the data is usually utilized to support statistical analysis in SciPy, plotting functions from Matplotlib, and machine learning algorithms in Scikit-learn.
9+
In this tutorial, you’ll learn:
1010

11-
### Core Components of Pandas Data Structure
12-
Pandas have two core data structure components, and all operations are based on those two objects. Organizing data in a particular way is known as a data structure. Here are the two pandas data structures:
11+
* Why programming with dates and times is such a challenge
12+
* Which functions are available in the Python datetime module
13+
* How to print or read a date and time in a specific format
14+
* How to do arithmetic with dates and times
1315

14-
* **Series**
15-
* **DataFrame**
16+
### 1. What is Pandas Time Module?
17+
The Python time module provides many ways of representing time in code, such as objects, numbers, and strings. It also provides functionality other than representing time, like waiting during code execution and measuring the efficiency of your code.
18+
19+
This article will walk you through the most commonly used functions and objects in time.
20+
21+
By the end of this article, you’ll be able to:
22+
23+
* Understand core concepts at the heart of working with dates and times, such as epochs, time zones, and daylight savings time
24+
* Represent time in code using floats, tuples, and struct_time
25+
* Convert between different time representations
26+
* Suspend thread execution
27+
* Measure code performance using perf_counter()
1628

1729

1830
## Table of contents 📋

0 commit comments

Comments
 (0)
0