PC Review


Reply
Thread Tools Rate Thread

Drawing a graph from a large volume of unusual data

 
 
=?Utf-8?B?bWVtczU1NQ==?=
Guest
Posts: n/a
 
      31st Jan 2006
How can i draw a gragh from data that is in the following format

LOAD 1
Displacement 0.001
LOAD 5
Displacement 0.012
LOAD 7
Displacement 0.015
etc
etc
etc

 
Reply With Quote
 
 
 
 
vezerid
Guest
Posts: n/a
 
      31st Jan 2006
You should break column B:B in two columns, by alternate rows, in order
to base a x-y scatter chart on them. Assuming your data start in B1.
Assuming your 2-column breakdown table starts in C2.

In C2:
=OFFSET($B$1, 2*(ROW()-ROW($C$2)), 0)
In D2:
=OFFSET($B$1, 2*(ROW()-ROW($C$2))+1, 0)

HTH
Kostis Vezerides

 
Reply With Quote
 
=?Utf-8?B?dWZvX3BpbG90?=
Guest
Posts: n/a
 
      31st Jan 2006
How about *1000
A B C
LOAD 1 =B1*1000
Displacement 0.001 =B2*1000
Then you can chart it so it is visible


"mems555" wrote:

> How can i draw a gragh from data that is in the following format
>
> LOAD 1
> Displacement 0.001
> LOAD 5
> Displacement 0.012
> LOAD 7
> Displacement 0.015
> etc
> etc
> etc
>

 
Reply With Quote
 
=?Utf-8?B?RXZhbg==?=
Guest
Posts: n/a
 
      31st Jan 2006
Sorting with key = the load-displacement column lets you seprate loads and
displs - you can grab one block and move it next to the other. You may need
to start with an index column with entries = row number. That will always
allow you to recover the original order and correspondence.
Evan Weiner Richland WA

"mems555" wrote:

> How can i draw a gragh from data that is in the following format
>
> LOAD 1
> Displacement 0.001
> LOAD 5
> Displacement 0.012
> LOAD 7
> Displacement 0.015
> etc
> etc
> etc
>

 
Reply With Quote
 
=?Utf-8?B?RXZhbg==?=
Guest
Posts: n/a
 
      31st Jan 2006
Another possibility - use the OFFSET function with a row offset of 2*ROW()-n.
Here n depends on which varible you want and were your data is.

"mems555" wrote:

> How can i draw a gragh from data that is in the following format
>
> LOAD 1
> Displacement 0.001
> LOAD 5
> Displacement 0.012
> LOAD 7
> Displacement 0.015
> etc
> etc
> etc
>

 
Reply With Quote
 
=?Utf-8?B?bWVtczU1NQ==?=
Guest
Posts: n/a
 
      1st Feb 2006
I am close to getting it now, but cant quite get it right. Let me show you a
bit clearer what i am trying to do.

Load, 0.001
Displ1, 0.009
Displ2, 0.006

Load, 0.005
Displ1, 0.016
Displ2, 0.011
Etc
Etc

How would i need to change the formula you gave me earlier 'vezerid'?


 
Reply With Quote
 
vezerid
Guest
Posts: n/a
 
      1st Feb 2006
So if I understand you correctly you want to plot one indepedent and 2
dependent variables? Then your data will be every 3 rows? If so, adapt
the previous formulae as follows:

In C2:
=OFFSET($B$1, 3*(ROW()-ROW($C$2)), 0)
In D2:
=OFFSET($B$1, 3*(ROW()-ROW($C$2))+1, 0)
In E2:
=OFFSET($B$1, 3*(ROW()-ROW($C$2))+2, 0)

Does this help?
Kostis Vezerides

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Large Discrepencies in Graph Data Lindsey Microsoft Excel Charting 0 10th Sep 2009 08:54 PM
unusual sequential read graph on CF SSD Tim_Mac Storage Devices 0 8th Apr 2008 10:43 PM
Re: Graph with large data range (hash marks on axis) Jon Peltier Microsoft Excel Misc 0 10th Jan 2007 01:47 AM
how do I make a graph with one very large piece of data =?Utf-8?B?dGFsZW1hbg==?= Microsoft Excel Charting 2 27th Oct 2006 07:48 PM
I need help shrinking a large difference in data on a bar graph =?Utf-8?B?S3lsZQ==?= Microsoft Excel Charting 1 30th Sep 2004 01:35 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 04:14 PM.