3-3-3-13. Glossary

Glossary Below is the summary of all the functions and methods that you learned in this lesson: Category: Initialization and Utility Function/Method Description pandas.read_csv(relative_path_to_file) Reads a comma-separated values (csv) file present at relative_path_to_file and loads it as a DataFrame pandas.DataFrame(data) Returns a 2-D heterogeneous tabular data. Note: There are other optional arguments as well that you can … Read more

3-3-2-13. Glossary

Glossary Below is the summary of all the functions and methods that you learned in this lesson: Category: General Purpose Function/Method Description numpy.ndarray.dtype Return the data-type of the elements of the array. Remember, arrays are homogeneous. numpy.ndarray.ndim Return the number of array-dimensions (rank), e.g., it will return 2 for a 4×3 array. numpy.ndarray.shape Return a tuple representing … Read more