ComeçarComece de graça

Dealing with empty and incomplete lines

When reading irregular files, i.e., files with varying/missing fields in rows, fread() tries to parse them intelligently. However, it may not be always possible to guess if the irregular lines should be skipped or imported by filling missing fields. For such cases, you can use the fill argument of fread().

You will be importing the following file:

id,name,val
9002019291929192,Robert Whitaker,
9200129401349301 ,Elisa Waters,190  
9200149429834456 , Karla Schmidt  

Notice that the first and last lines are incomplete.

Este exercício faz parte do curso

Data Manipulation with data.table in R

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Import the file and note the warning message
incorrect <- ___
incorrect
Editar e executar o código