PYTHON FOR ENGINEERS
Introduction and Packages
Introduction
Installation and Package Management
Numpy
Overview
Installation and Array Creation
Array Indexing
Array Shapes
Functions
Table of Common Numpy Functions
Numpy Quiz
Numpy Coding Lesson
Pandas
Overview
Installation and Data Import
Data Frame
Pivot Tables
Table of Pandas Functions
Pandas Quiz
Pandas Coding Lesson
Graphing
Overview
Line Graphs
Line Graph: Demo
Histogram
Histogram: Demo
Scatter Plot
Scatter Plot: Demo
Practical
Demo: Regression
Numpy Quiz
Question 0
Question 1
Question 2
Submit Quiz
How can you concatenate two NumPy arrays along the rows (vertically) in Python?
np.concatenate((arr1, arr2), axis=0)
np.concatenate((arr1, arr2), axis=1)
np.hstack((arr1, arr2))
np.vstack(arr1, arr2)
Prev
Next