Skip to Content
Digital Signal Processing (DSP) with Python Programming
book

Digital Signal Processing (DSP) with Python Programming

by Maurice Charbit
February 2017
Intermediate to advanced
290 pages
5h 48m
English
Wiley-ISTE
Content preview from Digital Signal Processing (DSP) with Python Programming

2Statistical Inferences

2.1. First step: visualizing data

In data analysis, a picture is often better than a thousand words. When we start analyzing data, the first step is not to run a complex statistical tool, but should be to visualize the data in a graph. This will allow us to understand the basic nature of the data. To meet this requirement, the following techniques are generally considered: scatter plot, histogram, boxplot and Q-Q plot.

2.1.1. Scatter plot

The scatter plot is a plot in which Cartesian coordinates are used to display values of pairs of variables. A scatter plot can suggest various kinds of correlations and trends between two variables. Typically, the scatter plot is commonly used to determine whether the relationship between variables is linear or not. The following program displays the scatter plot of 6 variables of the exogenous variables of the dataset statsmodels.api.datasets.star98:

# -*- coding: utf-8 -*-
"""
Created on Sun Jul 3 07:53:57 2016
****** scatterplotexample
@author: maurice
"""
import statsmodels.api as sm
from matplotlib import pyplot as plt
data = sm.datasets.star98.load()
P = 6; C=int((P-1)*P/2);
DP = 13; X0 = data.exog[:,DP:DP+P]
plt.figure(1); plt.clf(); cp=0;
for i1 in range(P):
 for i2 in range(i1+1,P):
  cp=cp+1;
  plt.subplot(4,4,cp);
  plt.plot(X0[:,i1],X0[:,i2],’.’)
  plt.xticks([]); plt.yticks([])
  plt.title(’(%i,%i)’%(i1,i2), fontsize=10)
plt.subplot(4,4,16)
for ip in range(P):
 nametext=(’%i: %s’%(ip,data.names[DP+ip])) ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Digital Signal Processing with Kernel Methods

Digital Signal Processing with Kernel Methods

Jose Luis Rojo-Alvarez, Manel Martinez-Ramon, Jordi Munoz-Mari, Gustau Camps-Valls

Publisher Resources

ISBN: 9781786301260Purchase book