can you turn csv file into array in python with numpy code example
Example: save numpy array to csv
import pandas as pd
pd.DataFrame(np_array).to_csv("path/to/file.csv")
import pandas as pd
pd.DataFrame(np_array).to_csv("path/to/file.csv")