Python Forum

Full Version: Homework Help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am not sure what I am doing wrong but I just need help with the first one to get the assignment going. I have look through my old assignments and am not sure how to do the code she is asking for. I am posting beginning of the assignment here.

df = pd.read_csv("boston.csv")
df.head(5)
print('df shape=',df.shape)

data = df.iloc[1:26,:]
data.head()
print('data shape=',data.shape)
data.head(5)
Question #1 #1) Create line chart of the field RM. The graph should have dashed lines, color red, linewidth= 4. Note... I can do the lines, color and width. I just for some reason cannot figure out what to use to get the linechart with the field RM
Sounds like you need to make a line graph using the data read from boston.csv. What Python package is used plotting (hint hint) graphs?