A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Charts and Charting
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Normalize Graph



 
 
Thread Tools Display Modes
  #1  
Old January 14th, 2009, 01:29 AM posted to microsoft.public.excel.charting
WA
external usenet poster
 
Posts: 35
Default Normalize Graph

I have the graph of the historical prices of a stock. I was wondering whether
it can be normalized. To clarify, I would like to see a graph with (-1) to
(1) on the y axis and time on the x-axis. The trend line of the stock price
data would be considered zero and the moves above or below that line would be
depicted between -1 and 1.

If anyone knows whether there is a function/graph type in excel to perform
this task, your assistance would be greatly appreciated.

Thanks.

  #2  
Old January 14th, 2009, 05:55 AM posted to microsoft.public.excel.charting
Jon Peltier
external usenet poster
 
Posts: 5,018
Default Normalize Graph

Normalize the data that feeds the chart. To normalize your data to MIN = -1
and MAX = 1, use a formula like this:

=2*(B2-MIN(B$2:B$1000))/(MAX(B$2:B$1000)-MIN(B$2:B$1000))-1

where your data is in B2:B1000, and this formula is to normalize the first
point, in B2.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services, Inc.
http://PeltierTech.com/WordPress/
_______


"WA" wrote in message
...
I have the graph of the historical prices of a stock. I was wondering
whether
it can be normalized. To clarify, I would like to see a graph with (-1) to
(1) on the y axis and time on the x-axis. The trend line of the stock
price
data would be considered zero and the moves above or below that line would
be
depicted between -1 and 1.

If anyone knows whether there is a function/graph type in excel to perform
this task, your assistance would be greatly appreciated.

Thanks.



  #3  
Old January 14th, 2009, 09:26 PM posted to microsoft.public.excel.charting
WA
external usenet poster
 
Posts: 35
Default Normalize Graph

Thanks for the rapid response John. Thats exactly what I was looking for.

"Jon Peltier" wrote:

Normalize the data that feeds the chart. To normalize your data to MIN = -1
and MAX = 1, use a formula like this:

=2*(B2-MIN(B$2:B$1000))/(MAX(B$2:B$1000)-MIN(B$2:B$1000))-1

where your data is in B2:B1000, and this formula is to normalize the first
point, in B2.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services, Inc.
http://PeltierTech.com/WordPress/
_______


"WA" wrote in message
...
I have the graph of the historical prices of a stock. I was wondering
whether
it can be normalized. To clarify, I would like to see a graph with (-1) to
(1) on the y axis and time on the x-axis. The trend line of the stock
price
data would be considered zero and the moves above or below that line would
be
depicted between -1 and 1.

If anyone knows whether there is a function/graph type in excel to perform
this task, your assistance would be greatly appreciated.

Thanks.




  #4  
Old January 14th, 2009, 10:01 PM posted to microsoft.public.excel.charting
WA
external usenet poster
 
Posts: 35
Default Normalize Graph

Thanks.

When I construct the graph, I have the x-axis labels (in this case, dates)
running through the middle of the chart. How do I move them to the bottom of
the chart?



"Jon Peltier" wrote:

Normalize the data that feeds the chart. To normalize your data to MIN = -1
and MAX = 1, use a formula like this:

=2*(B2-MIN(B$2:B$1000))/(MAX(B$2:B$1000)-MIN(B$2:B$1000))-1

where your data is in B2:B1000, and this formula is to normalize the first
point, in B2.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services, Inc.
http://PeltierTech.com/WordPress/
_______


"WA" wrote in message
...
I have the graph of the historical prices of a stock. I was wondering
whether
it can be normalized. To clarify, I would like to see a graph with (-1) to
(1) on the y axis and time on the x-axis. The trend line of the stock
price
data would be considered zero and the moves above or below that line would
be
depicted between -1 and 1.

If anyone knows whether there is a function/graph type in excel to perform
this task, your assistance would be greatly appreciated.

Thanks.




  #5  
Old January 14th, 2009, 10:08 PM posted to microsoft.public.excel.charting
WA
external usenet poster
 
Posts: 35
Default Normalize Graph

When I create the chart, my x-axis labels (in this case, dates) run right
through the middle of the chart, along the zero line. How do I move them to
the bottom of the chart?

"Jon Peltier" wrote:

Normalize the data that feeds the chart. To normalize your data to MIN = -1
and MAX = 1, use a formula like this:

=2*(B2-MIN(B$2:B$1000))/(MAX(B$2:B$1000)-MIN(B$2:B$1000))-1

where your data is in B2:B1000, and this formula is to normalize the first
point, in B2.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services, Inc.
http://PeltierTech.com/WordPress/
_______


"WA" wrote in message
...
I have the graph of the historical prices of a stock. I was wondering
whether
it can be normalized. To clarify, I would like to see a graph with (-1) to
(1) on the y axis and time on the x-axis. The trend line of the stock
price
data would be considered zero and the moves above or below that line would
be
depicted between -1 and 1.

If anyone knows whether there is a function/graph type in excel to perform
this task, your assistance would be greatly appreciated.

Thanks.




  #6  
Old January 14th, 2009, 11:44 PM posted to microsoft.public.excel.charting
Jon Peltier
external usenet poster
 
Posts: 5,018
Default Normalize Graph

Double click the axis, and on the Patterns tab, choose the Low option for
axis tick labels.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services, Inc.
http://PeltierTech.com/WordPress/
_______


"WA" wrote in message
...
When I create the chart, my x-axis labels (in this case, dates) run right
through the middle of the chart, along the zero line. How do I move them
to
the bottom of the chart?

"Jon Peltier" wrote:

Normalize the data that feeds the chart. To normalize your data to MIN
= -1
and MAX = 1, use a formula like this:

=2*(B2-MIN(B$2:B$1000))/(MAX(B$2:B$1000)-MIN(B$2:B$1000))-1

where your data is in B2:B1000, and this formula is to normalize the
first
point, in B2.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services, Inc.
http://PeltierTech.com/WordPress/
_______


"WA" wrote in message
...
I have the graph of the historical prices of a stock. I was wondering
whether
it can be normalized. To clarify, I would like to see a graph with (-1)
to
(1) on the y axis and time on the x-axis. The trend line of the stock
price
data would be considered zero and the moves above or below that line
would
be
depicted between -1 and 1.

If anyone knows whether there is a function/graph type in excel to
perform
this task, your assistance would be greatly appreciated.

Thanks.






  #7  
Old January 16th, 2009, 03:45 PM posted to microsoft.public.excel.charting
WA
external usenet poster
 
Posts: 35
Default Normalize Graph

Great - Thanks Jon

"Jon Peltier" wrote:

Double click the axis, and on the Patterns tab, choose the Low option for
axis tick labels.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services, Inc.
http://PeltierTech.com/WordPress/
_______


"WA" wrote in message
...
When I create the chart, my x-axis labels (in this case, dates) run right
through the middle of the chart, along the zero line. How do I move them
to
the bottom of the chart?

"Jon Peltier" wrote:

Normalize the data that feeds the chart. To normalize your data to MIN
= -1
and MAX = 1, use a formula like this:

=2*(B2-MIN(B$2:B$1000))/(MAX(B$2:B$1000)-MIN(B$2:B$1000))-1

where your data is in B2:B1000, and this formula is to normalize the
first
point, in B2.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services, Inc.
http://PeltierTech.com/WordPress/
_______


"WA" wrote in message
...
I have the graph of the historical prices of a stock. I was wondering
whether
it can be normalized. To clarify, I would like to see a graph with (-1)
to
(1) on the y axis and time on the x-axis. The trend line of the stock
price
data would be considered zero and the moves above or below that line
would
be
depicted between -1 and 1.

If anyone knows whether there is a function/graph type in excel to
perform
this task, your assistance would be greatly appreciated.

Thanks.







  #8  
Old December 18th, 2009, 04:58 PM posted to microsoft.public.excel.charting
dejan
external usenet poster
 
Posts: 1
Default Normalize Graph

how does one normalize two or more time series, so as to make them start with
ie 100, or for that mattern any other value?
I would like to see two time series starting from the same point, ie from
the first data point of the first series. On other words, i would like to
normalize one series with another.
How can it be done in excel?
thanks a lot

"Jon Peltier" wrote:

Normalize the data that feeds the chart. To normalize your data to MIN = -1
and MAX = 1, use a formula like this:

=2*(B2-MIN(B$2:B$1000))/(MAX(B$2:B$1000)-MIN(B$2:B$1000))-1

where your data is in B2:B1000, and this formula is to normalize the first
point, in B2.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services, Inc.
http://PeltierTech.com/WordPress/
_______


"WA" wrote in message
...
I have the graph of the historical prices of a stock. I was wondering
whether
it can be normalized. To clarify, I would like to see a graph with (-1) to
(1) on the y axis and time on the x-axis. The trend line of the stock
price
data would be considered zero and the moves above or below that line would
be
depicted between -1 and 1.

If anyone knows whether there is a function/graph type in excel to perform
this task, your assistance would be greatly appreciated.

Thanks.




  #9  
Old December 18th, 2009, 11:32 PM posted to microsoft.public.excel.charting
Mike Middleton[_2_]
external usenet poster
 
Posts: 90
Default Normalize Graph

dejan -

The simplest way to normalize is to divide each value in a time series by
the starting value of the time series (and multiply by 100 if you want an
"index" instead of a percentage).

- Mike
http://www.MikeMiddleton.com


"dejan" wrote in message
...
how does one normalize two or more time series, so as to make them start
with
ie 100, or for that mattern any other value?
I would like to see two time series starting from the same point, ie from
the first data point of the first series. On other words, i would like to
normalize one series with another.
How can it be done in excel?
thanks a lot

"Jon Peltier" wrote:

Normalize the data that feeds the chart. To normalize your data to MIN
= -1
and MAX = 1, use a formula like this:

=2*(B2-MIN(B$2:B$1000))/(MAX(B$2:B$1000)-MIN(B$2:B$1000))-1

where your data is in B2:B1000, and this formula is to normalize the
first
point, in B2.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services, Inc.
http://PeltierTech.com/WordPress/
_______


"WA" wrote in message
...
I have the graph of the historical prices of a stock. I was wondering
whether
it can be normalized. To clarify, I would like to see a graph with (-1)
to
(1) on the y axis and time on the x-axis. The trend line of the stock
price
data would be considered zero and the moves above or below that line
would
be
depicted between -1 and 1.

If anyone knows whether there is a function/graph type in excel to
perform
this task, your assistance would be greatly appreciated.

Thanks.





 




Thread Tools
Display Modes

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

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


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


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.