comp.lang.idl-pvwave archive
Messages from Usenet group comp.lang.idl-pvwave, compiled by Paulo Penteado

Home » Public Forums » archive » Re: Correlation on log-log? -or- Easy way of removing 0's?
Show: Today's Messages :: Show Polls :: Message Navigator
E-mail to friend 
Return to the default flat view Create a new topic Submit Reply
Re: Correlation on log-log? -or- Easy way of removing 0's? [message #20252 is a reply to message #20251] Fri, 26 May 2000 00:00 Go to previous messageGo to previous message
Craig Markwardt is currently offline  Craig Markwardt
Messages: 1869
Registered: November 1996
Senior Member
Simon de Vet <simon@mathstat.dal.ca> writes:

> I have been creating scatter plots on a log-log graph, and they look
> pretty good.
>
> However, I'd like some more accuracy than saying "pretty good". I tried
> to use CORRELATE, and got some fairly reasonable values. However, since
> CORRELATE is working with the pure data, scatters that look good on the
> log-log plot can give some pretty horrendous correlation coefficients.
>
> Therefore, I thought I'd try doing a correlation of the log the data, to
> get a better impression of what I'm seeing. Of the five data sets, 2
> gave better correlations, one got worse, and 2 gave me NaN's.
>
> I think that this may be because some of the values are 0, and this
> makes my computer explode (metaphorically speaking, of course). Is there
> an easy way of fixing this problem without loops? Could there be another
> cause of my problem?

This is a classic case of using WHERE to filter your data.

wh = where(x GT 0 AND y GT 0, ct)
if ct EQ 0 then message, 'ERROR: there are no valid points'

x1 = x(wh)
y1 = y(wh)

plot, x1, y1, /xlog, /ylog, ...
correlate, x1, y1, ...
etc.

Craig


--
------------------------------------------------------------ --------------
Craig B. Markwardt, Ph.D. EMAIL: craigmnet@cow.physics.wisc.edu
Astrophysics, IDL, Finance, Derivatives | Remove "net" for better response
------------------------------------------------------------ --------------
[Message index]
 
Read Message
Read Message
Read Message
Previous Topic: Re: ICUR Library
Next Topic: Correlation on log-log? -or- Easy way of removing 0's?

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ] [ PDF ]

Current Time: Sun Oct 12 13:07:59 PDT 2025

Total time taken to generate the page: 2.23841 seconds