CSC483 - Applied Biological Data Science - Week 2,3 & 4

Georgia Doing (doingg@union.edu)

1/13/26

1/26/26

A first notebook in data exploration.

Setup

Load library and mount you google drive folders

# pandas is installed on Colab runtime environments
#import pandas as pd

# https://pandas.pydata.org/docs/user_guide/options.html
#pd.set_option('display.max_columns', None)
#pd.set_option('display.max_rows', None)
# similar to first HW
#from google.colab import drive
#drive.mount('/content/drive/')

First Look at the “Meta” data

note: “meta” data here means information about the experiments that were done rather than the “biological data” that was collected during the experiments themselves

# load the data into a Pandas DataFrame
#df = pd.read_csv('drive/MyDrive/Teaching/CSC483-W26/data/SraRunTable_Ec_07_25_25_working_v4.csv')
# take a lok at the first 5 rows
#df.head()
  • what are the rows and columns?
  • is this all the rows? columns?
  • do you recognize any words?
2+3