Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #45915

Plotting with PyQwt

Newsgroups comp.lang.python
Date 2013-05-24 12:58 -0700
Message-ID <95315d83-2460-48b2-818f-412a911216cc@googlegroups.com> (permalink)
Subject Plotting with PyQwt
From Sara Lochtie <sara.lochtie@gmail.com>

Show all headers | View raw


Hi,

I'm trying to plot temperature vs. time using Qwt. I have temp data that i get in real time and I want to plot against time. So I thought I would have to use QwtPlot and QwtPlotCurve, so I did this first:

self.tempGraph = Qwt.QwtPlot(self)

curve =  QwtPlotCurve()
curve.setData(x, temp)



x is the time and temp is the data I have collected.

I know this isn't current, but I just don't know how to go about it. I haven't used Qwt before.

If anyone has some tips or advice for me that would be great!

Back to comp.lang.python | Previous | NextNext in thread | Find similar | Unroll thread


Thread

Plotting with PyQwt Sara Lochtie <sara.lochtie@gmail.com> - 2013-05-24 12:58 -0700
  Re: Plotting with PyQwt Sara Lochtie <sara.lochtie@gmail.com> - 2013-05-24 13:06 -0700

csiph-web