tidyr package for R language package learning: data structure reconstruction

tidyr package tidyr package mainly involves the following functions and functions: 1) Simple complement of missing values 2) Long table variable width table and wide table variable length table gather - convert the data with larger width into a longer form, that is, wide table and variable length table spread - converts long data into a wider ...

Posted by Typer999 on Fri, 17 Dec 2021 13:06:13 +0100

Introduction to R language

install Just started R language, R (R language version) and RStudio (r compilation platform) R: R RStudio: Rstudio Detailed installation process R language is an object-oriented programming language R language is more like python. The statement format is very similar to py. Use {} instead of: (colon) The processing object of R language is vec ...

Posted by whiterecluse on Fri, 17 Dec 2021 12:33:41 +0100

[data analysis and visualization] key points of data drawing 4 - problems of pie chart

Key points of data drawing 4 - problems of pie chart This article lets us understand the most criticized chart type in history: pie chart. Bad definition A pie chart is a circle divided into several parts, each part representing a part of the whole. It is usually used to display percentages where the sum of sectors equals 100%. The problem i ...

Posted by chomps on Wed, 01 Dec 2021 14:36:56 +0100

C language I blog assignment 06

Which course does this assignment belong tohttps://bbs.csdn.net/forums/csuft_swxy_C?typeId=17321What are the requirements for this assignmenthttps://bbs.csdn.net/topics/603427602The goal of this assignmentWrite code with a for loopStudent number20218534 1, Homework this week (40 points in total) 1.1 complete PTA homework and give a screenshot ...

Posted by grandeclectus on Sat, 20 Nov 2021 13:56:05 +0100

Data mining - data exploration (EDA)

I. Introduction   the first step in the data mining competition is not what model and method you want to use, but to understand the background of the competition first. You need to carefully read the official background of the game, and then consult relevant materials to have an in-depth understanding of the problem scene. We may have a g ...

Posted by zaki on Fri, 19 Nov 2021 21:23:39 +0100

Path planning -- Application of dynamic programming in Apollo Planner and C + + code implementation

What is dynamic programming (DP) Bellman optimal principle    the characteristic of multi-stage decision-making process is that decisions must be made in each stage. The strategy of decision-making process with N stages is a decision sequence composed of n successive stage decisions. Since the termination state of the previous stage ...

Posted by petersro on Thu, 04 Nov 2021 09:50:50 +0100

Why forEach with a for loop?

There are so many loops in js, for... In... of forEach. Some loops feel similar. Today we discuss the differences between for loops and forEach. We discuss from several dimensions: The essential difference between for loop and forEach. The syntax difference between for loop and forEach. Performance difference between for loop and forEach. Esse ...

Posted by Craig79 on Tue, 26 Oct 2021 02:57:52 +0200

In depth C language 2 - Advanced pointer

Welcome back to continue learning C language. After the data storage section, we come to the most important content in C language, pointer. Pointer can be said that in the eyes of beginners of C language or C + +, we are old friends who can't see their heads up. The data structure pointer of C language version is also the protagonist, Therefore ...

Posted by timcclayton on Sun, 10 Oct 2021 07:19:04 +0200

Detailed explanation of edit distance and its code implementation

summary The Minimum Edit Distance (MED) was proposed by Vladimir Levenshtein, a Russian scientist, in 1965, hence the name Levenshtein Distance. Levenshtein Distance is an index used to measure the similarity of two sequences in the fields of information theory, linguistics and computer science. Generally speaking, editing distance refers t ...

Posted by ferronrsmith on Tue, 05 Oct 2021 01:12:22 +0200

[Data Analyst - data analysis project case I] case analysis of 600w + short-term rental data

1 Preface 1.1 data set source The data in this case comes from the real data of Toronto in 2018-2019 on Airbnb website.The data set contains the listing data set, with about 20000 pieces of data, recording all the house information, including dozens of information fields including price.Another data set in the data set is calendar, which ...

Posted by direction on Sat, 25 Sep 2021 12:33:12 +0200