Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Arrow up icon
GO TO TOP
Python Data Analysis, Second Edition

You're reading from   Python Data Analysis, Second Edition Data manipulation and complex data analysis with Python

Arrow left icon
Product type Paperback
Published in Mar 2017
Publisher Packt
ISBN-13 9781787127487
Length 330 pages
Edition 2nd Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
Ivan Idris Ivan Idris
Author Profile Icon Ivan Idris
Ivan Idris
Arrow right icon
View More author details
Toc

Table of Contents (22) Chapters Close

Python Data Analysis - Second Edition
Credits
About the Author
About the Reviewers
www.PacktPub.com
Customer Feedback
Preface
1. Getting Started with Python Libraries FREE CHAPTER 2. NumPy Arrays 3. The Pandas Primer 4. Statistics and Linear Algebra 5. Retrieving, Processing, and Storing Data 6. Data Visualization 7. Signal Processing and Time Series 8. Working with Databases 9. Analyzing Textual Data and Social Media 10. Predictive Analytics and Machine Learning 11. Environments Outside the Python Ecosystem and Cloud Computing 12. Performance Tuning, Profiling, and Concurrency Key Concepts
Useful Functions Online Resources

NumPy


The following are useful NumPy functions:

numpy.arange([start,] stop[, step,], dtype=None): This function creates a NumPy array with evenly spaced values within a specified range.

numpy.argsort(a, axis=-1, kind='quicksort', order=None): This function returns the indices that will sort the input array.

numpy.array(object, dtype=None, copy=True, order=None, subok=False, ndmin=0): This function creates a NumPy array from an array-like sequence such as a Python list.

numpy.dot(a, b, out=None): This function calculates the dot product of two arrays.

numpy.eye(N, M=None, k=0, dtype=<type 'float'>): This function returns the identity matrix.

numpy.load(file, mmap_mode=None): This function loads NumPy arrays or pickled objects from .npy, .npz, or pickles. A memory-mapped array is stored in the filesystem and doesn't have to be completely loaded in the memory. This is especially useful for large arrays.

numpy.loadtxt(fname, dtype=<type 'float'>, comments='#', delimiter=None, converters=None, skiprows=0, usecols=None, unpack=False, ndmin=0): This function loads data from a text file into a NumPy array.

numpy.mean(a, axis=None, dtype=None, out=None, keepdims=False): This function calculates the arithmetic mean along the given axis.

numpy.median(a, axis=None, out=None, overwrite_input=False): This function calculates the median along the given axis.

numpy.ones(shape, dtype=None, order='C'): This function creates a NumPy array of a specified shape and data type, containing ones.

numpy.polyfit(x, y, deg, rcond=None, full=False, w=None, cov=False): This function performs a least squares polynomial fit.

numpy.reshape(a, newshape, order='C'): This function changes the shape of a NumPy array.

numpy.save(file, arr): This function saves a NumPy array to a file in the NumPy .npy format.

numpy.savetxt(fname, X, fmt='%.18e', delimiter=' ', newline='\n', header='', footer='', comments='# '): This function saves a NumPy array to a text file.

numpy.std(a, axis=None, dtype=None, out=None, ddof=0, keepdims=False): This function returns the standard deviation along the given axis.

numpy.where(condition, [x, y]): This function selects array elements from input arrays based on a Boolean condition.

numpy.zeros(shape, dtype=float, order='C'): This function creates a NumPy array of a specified shape and data type, containing zeros.

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at AU $19.99/month. Cancel anytime
Visually different images