Fundamentals of python data analysis 02 -- pandas related operations

pandas advanced operations import pandas as pd import numpy as np from pandas import DataFrame Replace operation The replacement operation can act synchronously in Series and DataFrame Single valued substitution Normal replacement: replace all qualified elements: to_replace=15,value=‘e’Specify single value substitution ...

Posted by dkjohnson on Mon, 07 Feb 2022 21:40:28 +0100

python notes -- understanding of grammar sugar @

Let's start with a simple decorator: def decoration(fun): def inner(x, y): a = fun(x, y) print(a) return a return inner @decoration def fun(x, y): return x + y fun(4, 5) The function of this is to add a printing function on the basis of the original. Then the problem comes. How does python execute this ...

Posted by kaupp on Mon, 07 Feb 2022 21:39:11 +0100

Fundamentals of python data analysis 03 - exercise items

Population analysis cases Requirements: Import the file and view the original dataSummarize population data and state abbreviation dataDelete the duplicate abstraction column in the summarized dataView the columns with missing data in the summarized dataFind out which states / regions make the value of state NaN in the summarized data, ...

Posted by saidbakr on Mon, 07 Feb 2022 20:57:01 +0100

Explanation of ARIMA basic concept and process

Basic concepts p: Autoregressive order q: Moving average order d: The number of differences made when the time series becomes stationary AR - Auto Regression model: AR can solve the relationship between current data and later data; Expressed as autoregressive model AR (P) MA - Moving Average, moving average model: Ma can s ...

Posted by marsooka on Mon, 07 Feb 2022 20:50:35 +0100

Using python to raise insects and climb the barrage

preface After 108 days, he released the latest video at station B, "I turned on a light in 108 days...". So let's use the crawler to crawl the bullet screen of the video and see what the partners say 1, What is a reptile? Baidu Encyclopedia says: a program to automatically obtain web content. In my opinion, crawlers are ~ ~ & ...

Posted by tomharding on Mon, 07 Feb 2022 20:41:35 +0100

Reading Notes: Chapter 7 Convolutional Neural Network

Catalog Chapter 7 Convolutional Neural Network 7.1 Overall Structure 7.2 Convolution Layer Problems with 7.2.1 Full Connection Layer 7.2.2 Convolution 7.2.3 Fill 7.2.4 steps Convolution of 7.2.5 3-D data 7.2.6 Combining Block Thinking 7.2.7 Batch Processing 7.3 Pooling Layer 7.4 Implementation of Convolution Layer and Pooling Layer ...

Posted by jimmygee on Mon, 07 Feb 2022 18:52:37 +0100

Two methods for Python to copy all sheet s in a table to another table [openpyxl / pandas] Practical Work Skills Sorting Series

Good morning, everyone. My name is Wu. If you think the article is well written, you can also call me Mr. Wu. Welcome to join me in the world of data analysis and learning! Interested friends can follow me Data Analysis Column There are many good articles to share with you. Front End Time encountered a problem while working - how to copy ...

Posted by ThinkGeekness on Mon, 07 Feb 2022 18:46:52 +0100

Python time series analysis and Practice

Time series analysis ARIMA Stationarity: stationarity requires that the fitting curve obtained through the sample time series can continue along the existing form "inertia" in the future Stationarity requires that the mean and variance of the series do not change significantly Strict and weak stability: Yan pingwen: the distr ...

Posted by trinitywave on Mon, 07 Feb 2022 13:31:46 +0100

Python pyGame realizes the functions of aircraft war-5-screen rendering, drawing score, number of lives, number of super bombs and pause

Follow the previous 4 steps: 1. Add background and aircraft movement: https://blog.csdn.net/weixin_38778769/article/details/117329303 2. Add enemy aircraft and collision explosion: https://blog.csdn.net/weixin_38778769/article/details/117356538 3. Firing bullets and hitting enemy aircraft: https://blog.csdn.net/weixin_38778769/article/details/1 ...

Posted by oldmanice on Mon, 07 Feb 2022 12:00:04 +0100

With Python script, you can monitor nearby network devices?

characteristic Wi Fi device scanning Email reminder Wechat reminder (Server sauce) Strange equipment detection principle In Wi Fi networks, the wireless network card transmits signals in broadcast mode. When the wireless network card broadcasts the information, all devices can receive the information. After the wireless network card is set ...

Posted by oliverw92 on Mon, 07 Feb 2022 08:37:20 +0100