Machine learning Day05
Machine learning DAY05
Grid search
The way to obtain an optimal super parameter can draw the verification curve, but the verification curve can only obtain one optimal super parameter at a time. If there are many permutations and combinations of multiple hyperparameters, grid search can be used to find the optimal hyperparameter combination. ...
Posted by superkingkong on Sun, 02 Jan 2022 18:07:59 +0100
Beginners in python take notes to get started with pandas
Applied Data Science with Python Web Course from the University of Michigan based on Data Analysis with Python and coursera
Introduction to Pandas
There are two common data structures: Series and DataFrame
1 Series
An array object of one dimension contains a sequence of values and an index, which can be interpreted as an array in Numpy. Ano ...
Posted by bdlang on Sat, 01 Jan 2022 07:00:25 +0100
R: Data analysis - vehicle data visualization
catalogue
1, Obtain vehicle fuel efficiency data
1. Download dataset
2. Save the field information of the dataset
2, Import vehicle fuel efficiency data into R
3, Explore and describe fuel efficiency data
4, Analyze the change of vehicle fuel efficiency data with time
5, Study the brand and model of cars
1, Obtain vehicle fuel efficien ...
Posted by rhodry_korb on Thu, 30 Dec 2021 17:36:07 +0100
Series type data of Pandas series
Series type data of Pandas seriesThis article begins to write a series of articles on Pandas, starting with: how to create data in Pandas. There are two types of data created in Pandas:Series typeDataFrame type<!--MORE-->Content mapSeries typeSeries is a one-dimensional array structure, which is only composed of index and value.Series ind ...
Posted by vexx on Thu, 30 Dec 2021 00:40:20 +0100
Data analysis Day08
Data analysis DAY08
pandas Foundation
Introduction to pandas
Python Data Analysis Library
Pandas is a NumPy based tool created to solve data analysis tasks. Pandas incorporates a large number of libraries and some standard data models, providing the tools needed to operate large structured data sets efficiently.
pandas core data structure ...
Posted by Bookmark on Wed, 29 Dec 2021 22:52:49 +0100
Python data analysis and mining - statistics and visualization of vocabulary frequency of a real topic in postgraduate entrance examination English in recent ten years 2012-2021
Python data analysis and mining - statistics and visualization of vocabulary frequency of a real topic in postgraduate entrance examination English in recent ten years 2012-2021
statement
This article is only published in CSDN, and others are pirated. Please support genuine!
Genuine link: https://blog.csdn.net/meenr/article/details/1190393 ...
Posted by rish1103 on Mon, 27 Dec 2021 16:52:50 +0100
One line of code can enhance the performance of Python by a hundred times, and the performance engine numba module is introduced
Due to the characteristics of its dynamic explanatory language, python runs code much slower than java and c + +. Especially when doing scientific computing, the disadvantages of Python are more prominent due to the billions and billions of operations.
The solution is always more difficult than the difficulty. numba is a powerful tool to solve ...
Posted by airwinx on Sat, 25 Dec 2021 01:28:26 +0100
RFM model for data analysis
I Mean RFM model algorithm Read the corresponding data from the csv file
data=pd.read_csv('./dataset.csv',encoding='ISO-8859-1')
#Read customer information in 2014
data_14=data[data['Order-year']==2014]
data_14
2. Get the corresponding column
data_14 = data_14[['CustomerID','OrderDate','Sales']]
data_14
CustomerID is the user id Orde ...
Posted by Cosizzle on Fri, 24 Dec 2021 04:15:58 +0100
Daily exercise - "calculating the value of Boolean expression" LeetCode Plus member exclusive question [detailed analysis] Hive / MySQL
Hello, I'm Lao Wu. You can also call me classmate Wu. Younger friends can also call me senior brother Wu. Welcome to the world of data analysis with me and learn together!
Interested friends can pay attention to me Data analysis column , there are many high-quality articles to share with you. In addition, you are also welcome to pay attention ...
Posted by iimrii on Tue, 21 Dec 2021 23:18:07 +0100
Data analysis and practice | explore the reasons for the decline in sales
Hello, I'm Ding Xiaojie. The source of the case in this paper is the book data analysis practice, which uses R language. In the next period of time, I will reproduce the case as much as possible with Python + Tableau for everyone to learn.
Scene description
The monthly sales of a small APP game operated by a company increased steadily, but it ...
Posted by gorskyLTD on Tue, 21 Dec 2021 03:30:54 +0100