A collection of basic articles of python, including detailed explanation of process, decorator and list
1. Process
Program: for example, xxx.py, which is a static program
Process: after a program runs, the resources used by code + are called processes. It is the basic unit for the operating system to allocate resources.
Not only can multitasking be completed through threads, but also processes
2. Status of the process
In work, the number o ...
Added by drdokter on Mon, 29 Nov 2021 17:04:45 +0200
Hands on data analysis -- data reconstruction
1. Data consolidation
1.1 import basic library
import numpy as np
import pandas as pd
1.2 loading data
#Load all the data in the data folder and observe the relationship between them compared with the previous original data
text_left_up = pd.read_csv("train-left-up.csv")
text_left_down = pd.read_csv("train-left-down.csv")
text_right_up = p ...
Added by Begbie on Fri, 19 Nov 2021 13:29:49 +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
python crawler what has the final say? Love to download any novels, and decide for themselves.
"The ancients' knowledge is weak, but their Kung Fu can only be achieved when they are young and old."
What has the final say of python crawler love? What kind of novels do you like to download? You can count on yourself. Download the crawler tutorial in super detailed novels, Download novels with python, and read novels whenever an ...
Added by gazfocus on Fri, 12 Nov 2021 14:21:45 +0200
[JS reverse hundred examples] actual combat of SM2+SM4 domestic encryption algorithm of Medical Insurance Bureau
WeChat official account: brother K crawler, QQ exchange group: 808574309, keep sharing crawler advance, JS/ Android reverse technology dry cargo!statementAll contents in this article are for learning and communication only. The packet capturing content, sensitive website and data interface have been desensitized. It is strictly prohibited to us ...
Added by Chicken Little on Fri, 12 Nov 2021 00:56:56 +0200
Analysis of students' grades by BP neural network model in R language
Original link: http://tecdat.cn/?p=19936 Original source: Tuo end data tribal official accountIn this tutorial, you will learn how to create a neural network model in R.Neural network (or artificial neural network) has the ability to learn through samples. Artificial neural network is an information processing model inspired by biological neuro ...
Added by member on Thu, 11 Nov 2021 03:09:56 +0200
Revisit Python data analysis (pandas, numpy, and matplotlib)
1 pandas Library
Our general alias is pd:
import pandas as pd
pandas can not only read data from a variety of different file formats, but also have a variety of data processing functions.
1.1 using pandas to read csv files
The pandas module provides a read_ csv method, you can directly read the csv file and return a DataFrame object. ...
Added by alanrenouf on Wed, 10 Nov 2021 10:36:45 +0200
Pandas data processing -- playing with time series data
In financial data analysis or quantitative research, the processing of time series data can not be avoided. Time series refers to the value sequence of a variable measured in time order within a certain time. Common time series data include temperature series that change with time in a day, or stock price series that fluctuate continuously duri ...
Added by D1proball on Tue, 26 Oct 2021 04:15:28 +0300
Pandas tutorial | detailed explanation of the usage of Groupby
In daily data analysis, it is often necessary to divide the data into different groups according to a certain (multiple) field for analysis. For example, in the field of e-commerce, the total sales of the country are divided according to provinces, and the changes of sales in provinces are analyzed. In the field of social networking, users are ...
Added by anish on Tue, 26 Oct 2021 04:14:45 +0300
Easy to understand Apriori algorithm
Apriori algorithm
1, Introduction to Apriori algorithm
Apriori algorithm is the first association rule mining algorithm and the most classical algorithm. It uses the iterative method of layer by layer search to find the relationship of itemsets in the database to form rules. The process consists of connection (matrix like operation) and pruni ...
Added by Richardtagger on Fri, 22 Oct 2021 11:45:22 +0300