Skip to content
1 hidden cell
Introduction to Data Science in Python
Introduction to Data Science in Python
Run the hidden code cell below to import the data used in this course.
1 hidden cell
Take Notes
Add notes about the concepts you've learned and code cells with code you want to keep.
selecting columns
Add your notes here
# Add your code snippets here
suspect=credit_records['supsect']
print (suspect)
#dot phrases
price = credit_records.price
print(price)
# Use info() to inspect mpr
print(mpr.info())