Hi I'm trying to import a csv file to create an adjacency matrix to then plat a directed graph. I've uploaded the csv file and then used this code to generate the matrix
sage: import csv
sage: data = list(csv.reader(file(DATA+'matrix23.csv')))
sage: m = matrix([[ float(_) for _ in line] for line in data])
sage: m
However although my csv file only contains integers 1's and 0's. the generated matrix is floating point 1.0's and 0.0's. This then causes problems trying to create the graph. The CSV file was created using MS Excel with cells formated to zero decimal places.
I'm new to both python and sage and can't find anything on the forums to help