Project

General

Profile

Dataanalysiskickstarter » History » Version 16

Nicolas Aunai, 24/12/2016 05:32 PM

1 1 Nicolas Aunai
# Data analysis kickstarter
2
3
4 15 Nicolas Aunai
## General Data Analysis
5
6 12 Nicolas Aunai
* [Which library should I use to handle data series?](#Which-library-should-I-use-to-handle-data-series) ?
7
* [Is there a library for plotting statistical data?](#Is-there-a-library-for-plotting-statistical-data) ?
8 3 Nicolas Aunai
9 7 Nicolas Aunai
10 15 Nicolas Aunai
11 16 Nicolas Aunai
## Space Plasmas Analysis
12 15 Nicolas Aunai
13 16 Nicolas Aunai
* [How can I open a CDF file?](#How-can-I-open-a-CDF-file)?
14 15 Nicolas Aunai
* 
15
16
17 8 Nicolas Aunai
----
18 1 Nicolas Aunai
19
20 16 Nicolas Aunai
## General Data Analysis
21
22 15 Nicolas Aunai
### Which library should I use to handle data series?
23
24 1 Nicolas Aunai
You will want to use the python [Pandas](http://pandas.pydata.org) [[pandas| (check here for Pandas tips)]] for analyzing your data. It is in particular very well suited for time series analysis and enable you to very easily manipulate dates, missing data, etc.
25
26
27 15 Nicolas Aunai
### Is there a library for plotting statistical data?
28 1 Nicolas Aunai
29
[Seaborn](http://seaborn.pydata.org) is a Python visualization library based on matplotlib. It provides a high-level interface for drawing attractive statistical graphics. [[Seaborn| Check here for seaborn tips]] 
30 16 Nicolas Aunai
31
32
33
34
## Space Plasmas Data Analysis
35
36
### How can I open a CDF file?
37
38
You should install [Spacepy](https://pythonhosted.org/SpacePy/index.html) on your machine. Then import the module ```spacepy.pycdf``` to load CDF files. Documentation for [PYCDF is here](https://pythonhosted.org/SpacePy/pycdf.html)