You are on page 1of 6

Interacting with the

Database
Introduction
Data analysis starts with data

How to get data into pandas library

1. Text Formats
2. Binary Formats
3. Databases

Mongo DB and Redis


Introduction
Mongo DB
Document Oriented Database
JSON document is used

Redis
In memory data structure store on top of which many application can be built
Fast Key value store
Supports List, Sets, hashes, bit array and advanced data structure such as HyperLogLog
Interacting with data in text format
Text

Great medium to exchange information.

Reading and Writing data from the text file

You might also like