Flashield's Blog

Just For My Daily Diary

Flashield's Blog

Just For My Daily Diary

Year: 2024

03.exercise-categorical-variables【练习:分类变量】

This notebook is an exercise in the Intermediate Machine Learning course. You can reference the tutorial at this link. By encoding categorical variables, you’ll obtain your best results thus far! 通过编码分类变量,您将获得迄今为止最好的结果! Setup 设置 The questions below will give you feedback on your work. Run the following cell to set up the feedback system. 以下问题将为您提供有关您工作的反馈。 运行以下单元格来设置反馈系统。 […]

03.course-categorical-variables【分类变量】

In this tutorial, you will learn what a categorical variable is, along with three approaches for handling this type of data. 在本教程中,您将了解什么是分类变量,以及处理此类数据的三种方法。 Introduction 介绍 A categorical variable takes only a limited number of values. 分类变量仅采用有限数量的值。 Consider a survey that asks how often you eat breakfast and provides four options: "Never", "Rarely", "Most days", or "Every […]

02.exercise-missing-values【练习:缺失值】

This notebook is an exercise in the Intermediate Machine Learning course. You can reference the tutorial at this link. Now it’s your turn to test your new knowledge of missing values handling. You’ll probably find it makes a big difference. 现在轮到您测试您对缺失值处理的新知识了。 您可能会发现它有很大的不同。 Setup 设置 The questions will give you feedback on your work. Run the […]

02.course-missing-values【缺失值】

In this tutorial, you will learn three approaches to dealing with missing values. Then you’ll compare the effectiveness of these approaches on a real-world dataset. 在本教程中,您将学习三种处理缺失值的方法。 然后,您将在现实数据集上比较这些方法的有效性。 Introduction 介绍 There are many ways data can end up with missing values. For example, 数据最终可能会出现缺失值的情况有很多。 例如, A 2 bedroom house won’t include a value for the size […]

01.exercise-introduction【练习:介绍】

This notebook is an exercise in the Intermediate Machine Learning course. You can reference the tutorial at this link. As a warm-up, you’ll review some machine learning fundamentals and submit your initial results to a Kaggle competition. 作为热身,您将回顾一些机器学习基础知识并将初步结果提交给 Kaggle 竞赛。 Setup 设置 The questions below will give you feedback on your work. Run the following […]

01.course-introduction【介绍】

Introduction 介绍 Welcome to Kaggle’s Intermediate Machine Learning course! 欢迎来到 Kaggle 的 中级机器学习 课程! If you have some background in machine learning and you’d like to learn how to quickly improve the quality of your models, you’re in the right place! In this course, you will accelerate your machine learning expertise by learning how to: […]

06.exercise-renaming-and-combining【练习:重命名及组合】

This notebook is an exercise in the Pandas course. You can reference the tutorial at this link. Introduction 介绍 Run the following cell to load your data and some utility functions. 运行以下单元格来加载数据和一些实用函数。 import pandas as pd reviews = pd.read_csv("../input/wine-reviews/winemag-data-130k-v2.csv", index_col=0) from learntools.core import binder; binder.bind(globals()) from learntools.pandas.renaming_and_combining import * print("Setup complete.") Setup complete. Exercises 练习 […]

06.course-renaming-and-combining【重命名及组合】

Introduction 介绍 Oftentimes data will come to us with column names, index names, or other naming conventions that we are not satisfied with. In that case, you’ll learn how to use pandas functions to change the names of the offending entries to something better. 通常,数据会带有我们不满意的列名、索引名或其他命名约定。 在这种情况下,您将学习如何使用 pandas 函数将有问题的条目的名称更改为更好的名称。 You’ll also explore how to combine data […]

05.exercise-data-types-and-missing-values【练习:数据类型及缺失值】

This notebook is an exercise in the Pandas course. You can reference the tutorial at this link. Introduction 介绍 Run the following cell to load your data and some utility functions. 运行以下单元格来加载数据和一些实用函数。 import pandas as pd reviews = pd.read_csv("../input/wine-reviews/winemag-data-130k-v2.csv", index_col=0) from learntools.core import binder; binder.bind(globals()) from learntools.pandas.data_types_and_missing_data import * print("Setup complete.") Setup complete. Exercises 练习 […]

05.course-data-types-and-missing-values【数据类型及缺失值】

Introduction 介绍 In this tutorial, you’ll learn how to investigate data types within a DataFrame or Series. You’ll also learn how to find and replace entries. 在本教程中,您将学习如何研究 DataFrame 或 Series 中的数据类型。 您还将学习如何查找和替换条目。 To start the exercise for this topic, please click here. 要开始本主题的练习,请单击此处。 Dtypes 数据类型 The data type for a column in a DataFrame or […]

Scroll to top