Scientific Computing#
Scientific Python: Scipy Stack#
Scipy = Scientific Python
scipy
numpy
pandas
Data Analysis in Python
Scipy
is an ecosystem, including a collection of open-source packages for scientific computing in Python.
A ‘family’ of packages that all work well together to do scientific computing.
Not made by the same people who manage the standard library.
Packages must be installed before you can use them. Install once. Import as many times as you want.
The packages we’re using today have 1) already been installed for you on datahub and 2) are part of the Anaconda distribution.
However, for your own work, you may want to install additional packages. To do so: pip install --user package
(where you replace package
with the package to be installed.
Homogenous Data#
for example: store data of the same type (i.e. all numerics)
recordings of values from experimental participants
heights or quantitative information from survey data
Lists are a start, and lists of lists are possible.
But, they can get nightmareish.
So we use arrays.
numpy
#
numpy
- stands for numerical python
arrays - work with arrays (matrices)
Allow you to efficiently operate on arrays (linear algebra, matrix operations, etc.)
import numpy as np
# Create some arrays of data
arr0 = np.array([1, 2, 3])
arr1 = np.array([[1, 2], [3, 4]])
arr2 = np.array([[5, 6], [7, 8]])
arr1
# lists of lists don't store dimensionality well
[[1, 2, 2, 2, 2, 2], [3, 4, 2, 2, 2, 2], [3, 4, 2, 2, 2, 2], [3, 4, 2, 2, 2, 2], [3, 4, 2, 2, 2, 2]]
Arrays: attributes, methods, & indexing#
# Check out an array of data
np.array([[1, 2, 2, 2, 2], [3, 4, 2, 2, 2], [3, 2, 2, 2, 2], [3, 2, 2, 2, 2], [3, 2, 2, 2, 2]])
numpy
arrays are an object type…so they have associated attributes (below) and methods (we’ll get to these in a second)!
# Check the shape of the array
print(arr1)
arr1.shape
# Index into a numpy array
# instead of using start:stop:step, it uses "coordinates", starting with 0
# use : to represent an entire row/column
arr1[1, 0]
Working with N-dimensional (multidimensional) arrays is easy within numpy
.
Notes on Arrays#
# arrays need to have the same length in each list
np.array([[1, 2, 3, 4], [2, 3, 4]])
# arrays are meant to store homogeneous data
# and it will convert data types if needed
np.array([[1, 2, 'cogs18'], [2, 3, 4]])
Working with Arrays#
(Things you can’t do with lists)
# Add arrays together
arr1 + arr2
# Matrix mutliplication
arr1 * arr2
A brief reminder/aside: zip()
#
zip()
takes two iterables (things you can loop over) and loop over them together.
for a, b in zip([1,2,3], ['a','b','c']):
print(a, b)
Class Question #1#
Given the following code, what will it print out?
data = np.array([[1, 2, 3, 4],
[5, 6, 7, 8]])
output = []
for d1, d2 in zip(data[0, :], data[1, :]):
output.append(d1 + d2)
print(output)
A) [1, 2, 3, 4]
B) [1, 2, 3, 4, 5, 6, 7, 8]
C) [6, 8, 10, 12]
D) [10, 26]
E) [36]
Note that if you find yourself looping over arrays…there is probably a better way.
# sum method
# by default sums all values in array
data.sum()
# sum method
# has an axis parameter
# axis=0 sums across columns
print(data)
data.sum(axis=0)
# typecasting to a different variable type
out_list = data.sum(axis=0).tolist()
print(out_list)
type(out_list)
What if you wanted to find the max value in an array…there’s a method for that!
# find max value in array
max_val = data.max()
max_val
But what if you wanted to know not what the max value was…but where in your original array that value was found.
There are also functions in numpy
that operate on arrays.
# see documentation for np.where()
np.where?
#data
# find position in array with max value
out = np.where(data == max_val)
out
# check to be sure
data[1,3]
Heterogenous Data#
have continuous (numeric) and categorical (discrete) data
different data types need to be stored
uses a DataFrame object (think: spreadsheet)
allows for column and row labels
pandas#
Pandas is Python library for managing heterogenous data.
At it’s core, Pandas is built around the DataFrame object, which is:
a data structure for labeled rows and columns of data
associated methods and utilities for working with data.
each column contains a
pandas
Series
import pandas as pd
# Create some example heterogenous data
d1 = {'Subj_ID': '001', 'score': 16, 'group' : 2, 'condition': 'cognition'}
d2 = {'Subj_ID': '002', 'score': 22, 'group' : 1, 'condition': 'perception'}
d3 = {'Subj_ID': '003', 'score': 18, 'group' : 1, 'condition': 'perception'}
# Create a dataframe
df = pd.DataFrame([d1, d2, d3], [0, 1, 2])
# Check out the dataframe
df
# You can index in pandas
# columns store information in series
df['condition']
# You can index in pandas
# loc specifies row, column position
df.loc[0,:]
# attribute of df object
# row, columns
df.shape
# how many rows there are in a series/df
df.shape[1] # len(df) would also work
Working with DataFrames#
There are a lot of functions and methods within pandas
. The general syntax is df.method()
where the method()
operates directly on the dataframe df
.
# calculate summary statistics
df.describe()
# Take the average of all columns
df.mean(numeric_only=True)
# edit values within a column and replace original values
df['Subj_ID'] = df['Subj_ID'].replace('00', '000', regex=True)
df['Subj_ID']
# specify the type of a variable in a column
df['score'] = df['score'].astype(float)
df['score']
# breakdown of how many of each category there are
val_counts = df['condition'].value_counts()
val_counts
# which unique values are there in condition?
df['condition'].unique()
# how many unique values are there
df['condition'].nunique()
# what's the category that shows up the most
val_counts.idxmax()
# what's the count of the value that shows up the most
val_counts.max()
Class Question #2#
Comparing them to standard library Python types, which is the best mapping for these new data types?
A) DataFrames are like lists, arrays are like tuples
B) DataFrames and arrays are like lists
C) DataFrames are like tuples, arrays are like lists
D) DataFrames and arrays are like dictionaries
E) Dataframes are like dictionaries, arrays are like lists
Plotting#
# This allows plots to appear within the jupyter notebook
%matplotlib inline
import matplotlib.pyplot as plt
# Create some data
dat = np.array([1, 2, 4, 8, 16, 32])
# Plot the data
plt.plot(dat);
can change plot type
lots of customizations possible
Analysis#
scipy
- statistical analysisscikit-learn
- machine learning
import scipy as sp
from scipy import stats
# Simulate some data
d1 = stats.norm.rvs(loc=0, size=1000)
d2 = stats.norm.rvs(loc=0.5, size=1000)
Analysis - Plotting the Data#
# Plot the data
plt.hist(d1, 25, alpha=0.6);
plt.hist(d2, 25, alpha=0.6);
Analysis - Statistical Comparisons#
# Statistically compare the two distributions
stats.ttest_ind(d1, d2)