Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Aprenda Types Conversion | Data Validation
Preprocessing Data

Deslize para mostrar o menu

book
Types Conversion

You can discover that data can be stored in the dataset in the wrong format or type. The most common cases are:

  • storing integer or float values as string variables.

  • storing date and time values as strings.

  • storing values in a form that can be converted to a more suitable one.

Let's explore the dataset exercise containing info about diet, pulse, time, and kind of different exercises. There is sample data:

unnamediddietpulsetimekind
3512low fat10430 minwalking
6422low fat10415 minrunning
104low fat8215 minrest
187no fat871 minrest
4817no fat1031 minwalking

It makes sense to modify the time column data: all rows contain the duration in minutes, so info about time units (min, sec, ot hours) is useless. We're gonna remove the extra symbols and store only numerical values, which additionally will be converted to int.

Tarefa

Swipe to start coding

Apply the type conversion to the time column. Remove the last 4 symbols which are equal to min and convert the rest to int. Check the sample.

Solução

Switch to desktopMude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 3. Capítulo 1
Sentimos muito que algo saiu errado. O que aconteceu?

Pergunte à IA

expand
ChatGPT

Pergunte o que quiser ou experimente uma das perguntas sugeridas para iniciar nosso bate-papo

book
Types Conversion

You can discover that data can be stored in the dataset in the wrong format or type. The most common cases are:

  • storing integer or float values as string variables.

  • storing date and time values as strings.

  • storing values in a form that can be converted to a more suitable one.

Let's explore the dataset exercise containing info about diet, pulse, time, and kind of different exercises. There is sample data:

unnamediddietpulsetimekind
3512low fat10430 minwalking
6422low fat10415 minrunning
104low fat8215 minrest
187no fat871 minrest
4817no fat1031 minwalking

It makes sense to modify the time column data: all rows contain the duration in minutes, so info about time units (min, sec, ot hours) is useless. We're gonna remove the extra symbols and store only numerical values, which additionally will be converted to int.

Tarefa

Swipe to start coding

Apply the type conversion to the time column. Remove the last 4 symbols which are equal to min and convert the rest to int. Check the sample.

Solução

Switch to desktopMude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 3. Capítulo 1
Switch to desktopMude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Sentimos muito que algo saiu errado. O que aconteceu?
some-alt