Week 3 - BALT 4396 - Introduction to Linear Algebra for Data Science
Linear Algebra in Data Science

Python with Vectors
The vector operations can be used within Python by using lists or the NumPy library as it will be more efficient because of its use in manipulating arrays and its built-in common operation functions. The most useful factor in all this is that Python data sets can be any size, big or small. Whether there are 100 pizzas to sift through or only 5, Python can handle it all as opposed to spreadsheets which limit how much data it can reliably work with.
Matrices and Linear Transformations
A matrix is a two-dimensional array of numbers, where each number is called an element. Oftentimes, they are thought of as a table with rows and columns, and most are familiar with its layout as one you would see in an Excel spreadsheet. Combined with linear transformation functions, mapping vectors and matrices to other existing vectors and matrices preserves the operations of both and can help in machine learning algorithms as it allows for much easier manipulation.
Comments
Post a Comment