Skip to content
1 hidden cell
Introduction to Statistics in Python
Introduction to Statistics in Python
Run the hidden code cell below to import the data used in this course.
from numpy import array
i_hat = array([2,3])
j_hat = array([2,-1])
basis = array([i_hat,j_hat]).transpose()
print(basis)1 hidden cell
Take Notes
Add notes about the concepts you've learned and code cells with code you want to keep.
Add your notes here
# Add your code snippets here