Outils pour utilisateurs

Outils du site


python:first_course_statistics

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentes Révision précédente
Prochaine révision
Révision précédente
python:first_course_statistics [2017/02/08 10:11]
Francesco Beretta [ScatterPlot (p. 7)]
python:first_course_statistics [2017/09/26 08:54] (Version actuelle)
Francesco Beretta [General instructions]
Ligne 5: Ligne 5:
   * pandas [[http://​pandas.pydata.org/​pandas-docs/​stable/​dsintro.html#​dataframe|dataframes]]   * pandas [[http://​pandas.pydata.org/​pandas-docs/​stable/​dsintro.html#​dataframe|dataframes]]
   * [[http://​matplotlib.org/​api/​pyplot_summary.html|matplotlib.pyplot]]   * [[http://​matplotlib.org/​api/​pyplot_summary.html|matplotlib.pyplot]]
 +
 +
 +Get the data from [[http://​people.stern.nyu.edu/​jsimonof/​Casebook/​Data/​ASCII/​README.html|this site]].
 +
  
 Save your scripts in a folder inside the data folder, calling the script folder '​my_scripts'​ or whaterver. If  '​my-scripts'​ is set as your [[python:​generic_features#​get_the_current_working_directory_address|current working directory]],​ then the data files are available under this address '​../​[data file]',​ for instantce: '​../​geyser1.TAB'​ Save your scripts in a folder inside the data folder, calling the script folder '​my_scripts'​ or whaterver. If  '​my-scripts'​ is set as your [[python:​generic_features#​get_the_current_working_directory_address|current working directory]],​ then the data files are available under this address '​../​[data file]',​ for instantce: '​../​geyser1.TAB'​
Ligne 35: Ligne 39:
 import matplotlib.pyplot as plt import matplotlib.pyplot as plt
 import pandas as pd import pandas as pd
-gysr1_boxplot = pd.read_csv('​...\geyser1.TAB',​ '​\t'​)+gysr1_boxplot = pd.read_csv('​.../geyser1.TAB',​ '​\t'​)
 data_gysr1 = gysr1_boxplot['​Interval'​] data_gysr1 = gysr1_boxplot['​Interval'​]
 plt.boxplot(data_gysr1) plt.boxplot(data_gysr1)
python/first_course_statistics.1486545066.txt.gz · Dernière modification: 2017/02/08 10:11 par Francesco Beretta