- R for Data Science Cookbook
- Yu Wei Chiu (David Chiu)
- 179字
- 2021-07-14 10:51:28
Introduction
In the previous chapter, we covered how to integrate data from various data sources. However, simply collecting data is not enough; you also have to ensure the quality of the collected data. If the quality of data used is insufficient, the results of the analysis may be misleading due to biased samples or missing values. Moreover, if the collected data is not well structured and shaped, you may find it hard to correlate and investigate the data. Therefore, data preprocessing and preparation is an essential task that you must perform prior to data analysis.
Those of you familiar with how SQL operates may already understand how to use databases to process data. For example, SQL allows users to add new records with the insert
operation, modify data with the update
operation, and remove records with the delete
operation. However, we do not need to move collected data back to the database; R already provides more powerful and convenient preprocessing functions and packages. In this chapter, we will cover how simple it is to perform data preprocessing in R.
- Design Principles for Process:driven Architectures Using Oracle BPM and SOA Suite 12c
- Java異步編程實戰
- Python數據分析入門與實戰
- Visual C++數字圖像模式識別技術詳解
- Blockly創意趣味編程
- 精通Python設計模式(第2版)
- 琢石成器:Windows環境下32位匯編語言程序設計
- Elasticsearch for Hadoop
- Learning Hadoop 2
- MATLAB GUI純代碼編寫從入門到實戰
- Django實戰:Python Web典型模塊與項目開發
- Visual FoxPro 6.0程序設計
- Python大規模機器學習
- INSTANT Apache Hive Essentials How-to
- Python數據可視化之matplotlib實踐