Introduction to Python, read this article is enough
brief introduction
The content is long, suitable for collection and learning. This content contains all knowledge points and grammar. Friends who like it can collect it for future learning.
Python is a high-level scripting language that combines interpretability, compilation, interactivity and object-oriented. Python was invented by Guido van ...
Posted by yeehawjared on Mon, 20 Dec 2021 19:36:13 +0100
Hands on deep learning Chapter II learning notes
Section I data cleaning and feature processing
View missing values in dataset
Use isnull() or isna(), or info() to view the number of non empty data in the dataset Here are some pits:
NP in numpy Nan is in float format and cannot judge two NP The number of Nan is equalNone is a NoneType, NP The result of Nan is none will also be FalseThe ...
Posted by WildcatRudy on Mon, 20 Dec 2021 11:11:07 +0100
Dissimilarity measurement of Python machine learning
1 Introduction
Similarity and dissimilarity are important concepts in machine learning, because they are adopted by many data mining technologies, such as common clustering, nearest neighbor classification and anomaly detection. In many cases, once we calculate the similarity or dissimilarity of eigenvectors, we no longer need the original dat ...
Posted by feeta on Mon, 20 Dec 2021 03:15:56 +0100
Hands on learning data analysis Task05
reference material: https://gitee.com/datawhalechina/hands-on-data-analysis
Chapter 3 model building and evaluation - Modeling
After learning the knowledge points in the previous two chapters, I can process the data itself, such as adding, deleting, checking and supplementing the data itself, and do the necessary cleaning work. Then we'll sta ...
Posted by swallace on Sun, 19 Dec 2021 23:12:57 +0100
Manual in-depth Study Chapter II Notes 2
Data consolidation
Common data consolidation methods for pandas:
pandas.merge connects rows in different DataFrame s based on one or more keys, which is the join operation of the database.pandas.concat can stack multiple objects together along an axisInstance method combine_first can stitch together duplicate data and fill in missing valu ...
Posted by AV1611 on Sun, 19 Dec 2021 23:09:30 +0100
R language is based on ems package standardized mortality (SMR) calculation
To analyze whether there are excess deaths in the cohort, the standard population mortality is usually used to correct. The actual number of deaths (d) in the immediate observation and a standard number of deaths (E). The ratio of D to e is called the standardized mortality ratio (SMR). The standardized mortality rate (SMR) is the ratio of obse ...
Posted by jkrystof on Sun, 19 Dec 2021 14:04:11 +0100
Full coverage of MySQL Foundation
Database benefits
1.Persistent data to local
2.It can realize structured query and facilitate management
Database related concepts
1,DB: Database, a container that holds a set of organized data
2,DBMS: Database management system, also known as database software (product), is used for management DB Data in
3,SQL:Structured query langu ...
Posted by keyurshah on Thu, 16 Dec 2021 18:35:38 +0100
Four skills of row column conversion in pandas
Official account: Special HouseAuthor: PeterEditor: Peter
Hello, I'm Peter~
This article introduces the four row column conversion methods in Pandas, including:
melttranspose T or transferwide_to_longexplode (explosion function)
Finally, answer a data processing question asked by a reader friend.
Pandas row column conversion
There a ...
Posted by gszauer on Wed, 15 Dec 2021 15:24:45 +0100
JimuReport building block report v1 Version 4.2 release, free visual low code report
Project introductionBuilding block report, a free Visual Web Report tool, online drag and drop design like building blocks! Functions include data report, print design, chart report, large screen design, etc!Adhering to the product concept of "simple, easy-to-use and professional", it greatly reduces the difficulty of report developme ...
Posted by leeandrew on Sun, 12 Dec 2021 15:26:02 +0100
Take you to learn the basics of python: List
In this section, we will learn more about List operations in more detail!
1, What is the list?
What a list is: a box can hold all kinds of things, and the box is equivalent to this list, which is what can hold all kinds of data in the program.
To put it professionally, a list is composed of a series of elements arranged in a specific order. ...
Posted by opencombatclan on Thu, 09 Dec 2021 00:51:06 +0100