CH01 scientific computing tool: Numpy learning notes

Introduce Numpy is an open source numerical calculation extension package for Python. Numpy supports common array and matrix operations. For the same numerical calculation task, using numpy is much simpler and more efficient than using Python directly.Numpy uses the ndarray object to handle multidimensional arrays, which is a fast and fle ...

Added by cshinteractive on Fri, 10 Dec 2021 14:13:45 +0200

[Pandas learning notes 02] - advanced usage of data processing

Author: Huan HaoSource: Hang Seng LIGHT cloud communityPandas is a Python software library, which provides a large number of functions and methods that enable us to process data quickly and easily. This paper will mainly introduce the practical data processing operation of pandas.Series of articles:[Pandas learning notes 01] powerful tool set f ...

Added by piznac on Wed, 01 Dec 2021 07:50:31 +0200

Half an hour a day: ten sets of exercises in introduction Python and Pandas library will take you to learn data analysis

Pandas is an open source, BSD licensed library that must be mastered when starting Python to do data analysis. It provides high-performance, easy-to-use data structures and data analysis tools. The main data structures are Series (one-dimensional data) and DataFrame (two-dimensional data), which are sufficient to deal with most typical use ...

Added by chrispols on Thu, 18 Nov 2021 15:32:18 +0200

Summary of text type data processing in pandas

1. Case conversion and filling of English letters s = pd.Series(['lower', 'CAPITALS', 'this is a sentence', 'SwApCaSe']) Uppercase to lowercase: s.str.lower()Lowercase to uppercase: s.str.upper()Change to news title form: s.str.title()The first letter is uppercase, and the rest is lowercase: s.str.capitalize()Convert the original upperca ...

Added by immunity on Sun, 31 Oct 2021 12:31:52 +0200

Introduction notes to data analysis

# Download skimage pip install scikit-image -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com 1, Installation of ipython #Install ipython pip install ipython # Enter the ipython command line ipython 2, Installation and configuration of Jupiter notebook Jupiter notebook is a note taking tool for writing python code and s ...

Added by ZaphodQB on Fri, 15 Oct 2021 01:05:16 +0300

❤️ 20000 words, summarizing 50 pandas high-frequency operations [illustrated and worthy of collection] ❤️

Point, knock on the blackboard First of all, this paper follows the traditional teaching, point to point! Only some functions or processing methods that are frequently used by individuals are introduced.The examples in this article are only used for demonstration. Generally, the examples do not modify the original data. If the code will modif ...

Added by Daukan on Tue, 21 Sep 2021 14:21:22 +0300

Outlier processing in python data analysis practice

1. Outlier definition In statistics, outliers are data points that do not belong to a specific population, and are abnormal observations far away from other values. Outliers are observations different from other well structured data. For example, you can clearly see the outliers in this list: [20,24,22,19,29,184300,30,18] It is easy to i ...

Added by c815902 on Sat, 18 Sep 2021 21:11:59 +0300