An open API service indexing awesome lists of open source software.

https://github.com/alro10/data-science-visualization

How to start to visualize data for Data Scientist
https://github.com/alro10/data-science-visualization

data-science data-visualization matplotlib plot plotly plotly-dash plotly-python seaborn-plots

Last synced: 4 days ago
JSON representation

How to start to visualize data for Data Scientist

Awesome Lists containing this project

README

        

# data-science-visualization
In order to become a Data Scientist, plot and visualize data from files such as csv, txt, etc, turn important and also really cool. How do you infer about some data? If you do not see on ```XYZ```, using awesome packages running on G colab, jupyter or script form.

under developing!

## Matplotlib

Famous and well-known python package, for beginners is very common use it.

```python
pip install matplotlib # python 2.7
pip3 install matplotlib # python 3.5
```

```
import matplotlib.pyplot as plt
```

## Seaborn

[Seaborn](https://seaborn.pydata.org/) is a Python data visualization library based on matplotlib. It provides a high-level interface for drawing attractive and informative statistical graphics.

```python
pip install seaborn # python 2.7
pip3 install seaborn # python 3.5
```

```
import seaborn as sns
```

## Plotly

An open-source, interactive graphing library for Python, [Plotly](https://plot.ly/python/)

```python
pip install plotly # python 2.7
pip3 install plotly # python 3.5
```
```
import plotly.plotly as py
```

*Function for using plotly on G colab*

```python
def configure_plotly_browser_state():
import IPython
display(IPython.core.display.HTML('''


requirejs.config({
paths: {
base: '/static/base',
plotly: 'https://cdn.plot.ly/plotly-1.5.1.min.js?noext',
},
});

''')) # python 3.5
```

*Collaborations and contributions are very welcome!* :+1: