AI-powered search & chat for Data / Computer Science Students

Learn more with these recommended learning resources

Types of Data

 Analytics Vidhya

John Tukey in his 1962 paper called “The Future of Data Analysis” proposed a new scientific discipline called ‘Data Analysis’, this was one of the important work in the foundation of Data Science…

Read more at Analytics Vidhya

File Formats

 Codecademy

File formats determine how information or data, such as text and images, are created, stored, and read. Each file format has a unique extension. For example, a CSV (Comma Separated Values) file has th...

Read more at Codecademy

Which Data Format to Use For Your Big Data Project?

 Towards Data Science

Choosing the right data format is crucial in Data Science projects, impacting everything from data read/write speeds to memory consumption and interoperability. This article explores seven popular ser...

Read more at Towards Data Science

Big Data File Formats Explained

 Towards Data Science

For data lakes, in the Hadoop ecosystem, HDFS file system is used. However, most cloud providers have replaced it with their own deep storage system such as S3 or GCS. When using deep storage…

Read more at Towards Data Science

A Comprehensive Guide to File Formats in Data Engineering

 Python in Plain English

Understanding the Pros and Cons of using CSV, JSON, Parquet, Avro, and ORC file format in Data Engineering. Photo by Mika Baumeister on Unsplash Introduction In big data and data engineering, choosing...

Read more at Python in Plain English

Data types

 NumPy user guide

See also Data type objects Array types and conversions between types NumPy supports a much greater variety of numerical types than Python does. This section shows which are available, and how to modif...

Read more at NumPy user guide

Data Types

 The Python Standard Library

Data Types The modules described in this chapter provide a variety of specialized data types such as dates and times, fixed-type arrays, heap queues, double-ended queues, and enumerations. Python als...

Read more at The Python Standard Library

Data Loading, Storage, and File Formats

 Python for Data Analysis Book

Reading data and making it accessible (often called data loading ) is a necessary first step for using most of the tools in this book. The term parsing is also sometimes used to describe loading text ...

Read more at Python for Data Analysis Book

Data Loading, Storage, and File Formats

 Python for Data Analysis Book

Reading data and making it accessible (often called data loading ) is a necessary first step for using most of the tools in this book. The term parsing is also sometimes used to describe loading text ...

Read more at Python for Data Analysis Book

File Formats

 The Python Standard Library

File Formats The modules described in this chapter parse various miscellaneous file formats that aren’t markup languages and are not related to e-mail. csv — CSV File Reading and Writing Module Conte...

Read more at The Python Standard Library

Data Types in Data Science

 Towards Data Science

There are a lot of engineers who have never been involved in the field of statistics or data science. But in order to build data science pipelines or rewrite produced code by data scientists to an…

Read more at Towards Data Science

Data Types in Data Science

 Python in Plain English

There are a lot of engineers who have never been involved in the field of statistics or data science. But to build data science pipelines or rewrite produced code by data scientists to an adequate…

Read more at Python in Plain English

Data Types

 Codecademy

Data types provide categories for values we store in tables. Types are assigned to fields through table creation and are responsible for determining some of the attributes and constraints (such as the...

Read more at Codecademy

Extra Data Types

 FastAPI Documentation

Extra Data Types Up to now, you have been using common data types, like: int float str bool But you can also use more complex data types. And you will still have the same features as seen up to now: ...

Read more at FastAPI Documentation

Data Types for Data Sciences

 Towards Data Science

Big Data and Data Science is now in everyone’s mind. But not everyone clearly understands that not all data is the same, and has a clear vision of the types of applications and technologies available…...

Read more at Towards Data Science

Data Types

 Codecademy

Data is foundational in programming and is classified into different types to indicate how it can be interpreted, compiled, and used in software. For the most part, data types are categorized into two...

Read more at Codecademy

How to Read 5 Common Data Formats in Python

 Python in Plain English

A beginner’s guide with examples on how to read data from the Text, JSON, CSV, HTML, and SQLite data formats. Continue reading on Python in Plain English

Read more at Python in Plain English

CSV File Format in Data Science

 Towards AI

The comma-separated values (CSV) file format is the most popular file format in data science. As a beginner, one of the basic skills that you learn in your journey to data science is how to import…

Read more at Towards AI

Data Types

 Codecademy

R supports many data types, each with different uses and characteristics. Variables can hold different data types, and are not limited to storing the data type they were initially assigned. R supports...

Read more at Codecademy

Data Types

 Codecademy

Data types represent different types of data such as numbers, booleans, strings, etc. As an object-oriented language, all data types are based on classes. Numbers Ruby has different types of numbers s...

Read more at Codecademy

Big Data File Formats Explained Using Spark Part 1

 Analytics Vidhya

When dealing with large datasets, using traditional CSV or JSON formats to store data is extremely ineffecient in terms of query speed and storage costs.

Read more at Analytics Vidhya

Data Types

 Codecademy

C++ supports many data types that represent the size and kind of values being stored in memory. Memory Size The size of a given data type is measured in bytes: Data Type Memory Size bool 1 byte char 1...

Read more at Codecademy

Data Types

 Codecademy

Data types are the classifications given to the different kinds of values used in everyday programming. In Go, there are seven fundamental data types: Numbers, Strings, Booleans, Arrays, Structs, Slic...

Read more at Codecademy

Choosing the Right Data Types

 Level Up Coding

Every time we create a new data structure, we have to decide which data types to use. Usually, the decision is simple: text most likely will become a String, non-floating-point numbers will be int…

Read more at Level Up Coding