How can discard “peaks” values from a chart?What are recommended waystools for processing large data from Excel Files?How to generate bulk graphics using RHow to manipulate this column of less than/greater than?How can I transpose a high dimensional dataset?How far can one go with excel?How to add values to new row to a csv in pythonHow to predict whether or not a customer will renewHow to Write Multiple Data Frames in an Excel SheetAnalyze additions and subtractions to/from a data set
Checks user level and limit the data before saving it to mongoDB
Who was the lone kid in the line of people at the lake at the end of Avengers: Endgame?
Is there really no use for MD5 anymore?
Read line from file and process something
How do I deal with a coworker that keeps asking to make small superficial changes to a report, and it is seriously triggering my anxiety?
Why didn't the Space Shuttle bounce back into space as many times as possible so as to lose a lot of kinetic energy up there?
How can Republicans who favour free markets, consistently express anger when they don't like the outcome of that choice?
"The cow" OR "a cow" OR "cows" in this context
Why did some of my point & shoot film photos come back with one third light white or orange?
Does any yogic siddhi let a human to be simultaneously present at two different places physically?
What makes accurate emulation of old systems a difficult task?
basic difference between canonical isomorphism and isomorphims
Can I criticise the more senior developers around me for not writing clean code?
How exactly does Hawking radiation decrease the mass of black holes?
Why was the Spitfire's elliptical wing almost uncopied by other aircraft of World War 2?
Which big number is bigger?
Contradiction proof for inequality of P and NP?
Solving a quadratic equation by completing the square
Random Forest different results for same observation
If a planet has 3 moons, is it possible to have triple Full/New Moons at once?
Detect an Empty Hopper in MC 1.12.2
'regex' and 'name' directives in find
Multiple options vs single option UI
Is there any official lore on the Far Realm?
How can discard “peaks” values from a chart?
What are recommended waystools for processing large data from Excel Files?How to generate bulk graphics using RHow to manipulate this column of less than/greater than?How can I transpose a high dimensional dataset?How far can one go with excel?How to add values to new row to a csv in pythonHow to predict whether or not a customer will renewHow to Write Multiple Data Frames in an Excel SheetAnalyze additions and subtractions to/from a data set
$begingroup$
I have this chart
where you can see that some points are far away from the "trend" of the curve. The chart represents $5,000$ values where each value corresponds to a specific hour of a day, month and year. In this case, it goes from 01/01/18
until 05/08/18
(non-american format) and as you can see at the first lower peak, it was caused because at 12.00
the cost was $20$ USD but at 1.00 AM
it went up to $51$ USD.
I've read that some people just delete those 'peaks' values but I don't know if there's a better solution. This graph shows almost a year but I have in mind on graphing $10$ years of this prices so the situation could be worse. Do you know a better strategy? I'm thinking maybe in calculating average costs for every $6$ hours but it feels like a cheap solution to me.
excel
$endgroup$
add a comment |
$begingroup$
I have this chart
where you can see that some points are far away from the "trend" of the curve. The chart represents $5,000$ values where each value corresponds to a specific hour of a day, month and year. In this case, it goes from 01/01/18
until 05/08/18
(non-american format) and as you can see at the first lower peak, it was caused because at 12.00
the cost was $20$ USD but at 1.00 AM
it went up to $51$ USD.
I've read that some people just delete those 'peaks' values but I don't know if there's a better solution. This graph shows almost a year but I have in mind on graphing $10$ years of this prices so the situation could be worse. Do you know a better strategy? I'm thinking maybe in calculating average costs for every $6$ hours but it feels like a cheap solution to me.
excel
$endgroup$
add a comment |
$begingroup$
I have this chart
where you can see that some points are far away from the "trend" of the curve. The chart represents $5,000$ values where each value corresponds to a specific hour of a day, month and year. In this case, it goes from 01/01/18
until 05/08/18
(non-american format) and as you can see at the first lower peak, it was caused because at 12.00
the cost was $20$ USD but at 1.00 AM
it went up to $51$ USD.
I've read that some people just delete those 'peaks' values but I don't know if there's a better solution. This graph shows almost a year but I have in mind on graphing $10$ years of this prices so the situation could be worse. Do you know a better strategy? I'm thinking maybe in calculating average costs for every $6$ hours but it feels like a cheap solution to me.
excel
$endgroup$
I have this chart
where you can see that some points are far away from the "trend" of the curve. The chart represents $5,000$ values where each value corresponds to a specific hour of a day, month and year. In this case, it goes from 01/01/18
until 05/08/18
(non-american format) and as you can see at the first lower peak, it was caused because at 12.00
the cost was $20$ USD but at 1.00 AM
it went up to $51$ USD.
I've read that some people just delete those 'peaks' values but I don't know if there's a better solution. This graph shows almost a year but I have in mind on graphing $10$ years of this prices so the situation could be worse. Do you know a better strategy? I'm thinking maybe in calculating average costs for every $6$ hours but it feels like a cheap solution to me.
excel
excel
edited Aug 11 '18 at 9:37
BrunoGL
1,061222
1,061222
asked Aug 7 '18 at 6:37
ZrakkZrakk
61
61
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
$begingroup$
I would say you have two options to choose from:
- Aggregate your data
- Use a low-pass-filter
Aggregating
Aggregating your data over long time periods is not cheap (whatever that means). It is a common way of displaying trends over long periods of time.
Take a look at how Bloomberg displays the exchange rate of EUR over USD.
You can filter by time period, and if you select 1 day, you see the hourly rate:
or you can filter by month, and see the rate aggregated by day. For them, the last rate is the important one, so that is the value you see. For you, however, will depend on your use case. You can choose to pick one of the following: mean, median, mode, max, min, first, last or anything else that makes sense for you.
Signal processing filtering
If you want to take a more mathematical approach to your problem, you could use a signal filtering technique to reduce high-frequencies from your signal.
What you need is a low-pass filter.
If you are using Excel, you certainly can do this.
However, I would recommend you do that in some programing language like Matlab or Python, that contain easier to use signal processing packages.
$endgroup$
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "557"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdatascience.stackexchange.com%2fquestions%2f36572%2fhow-can-discard-peaks-values-from-a-chart%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
I would say you have two options to choose from:
- Aggregate your data
- Use a low-pass-filter
Aggregating
Aggregating your data over long time periods is not cheap (whatever that means). It is a common way of displaying trends over long periods of time.
Take a look at how Bloomberg displays the exchange rate of EUR over USD.
You can filter by time period, and if you select 1 day, you see the hourly rate:
or you can filter by month, and see the rate aggregated by day. For them, the last rate is the important one, so that is the value you see. For you, however, will depend on your use case. You can choose to pick one of the following: mean, median, mode, max, min, first, last or anything else that makes sense for you.
Signal processing filtering
If you want to take a more mathematical approach to your problem, you could use a signal filtering technique to reduce high-frequencies from your signal.
What you need is a low-pass filter.
If you are using Excel, you certainly can do this.
However, I would recommend you do that in some programing language like Matlab or Python, that contain easier to use signal processing packages.
$endgroup$
add a comment |
$begingroup$
I would say you have two options to choose from:
- Aggregate your data
- Use a low-pass-filter
Aggregating
Aggregating your data over long time periods is not cheap (whatever that means). It is a common way of displaying trends over long periods of time.
Take a look at how Bloomberg displays the exchange rate of EUR over USD.
You can filter by time period, and if you select 1 day, you see the hourly rate:
or you can filter by month, and see the rate aggregated by day. For them, the last rate is the important one, so that is the value you see. For you, however, will depend on your use case. You can choose to pick one of the following: mean, median, mode, max, min, first, last or anything else that makes sense for you.
Signal processing filtering
If you want to take a more mathematical approach to your problem, you could use a signal filtering technique to reduce high-frequencies from your signal.
What you need is a low-pass filter.
If you are using Excel, you certainly can do this.
However, I would recommend you do that in some programing language like Matlab or Python, that contain easier to use signal processing packages.
$endgroup$
add a comment |
$begingroup$
I would say you have two options to choose from:
- Aggregate your data
- Use a low-pass-filter
Aggregating
Aggregating your data over long time periods is not cheap (whatever that means). It is a common way of displaying trends over long periods of time.
Take a look at how Bloomberg displays the exchange rate of EUR over USD.
You can filter by time period, and if you select 1 day, you see the hourly rate:
or you can filter by month, and see the rate aggregated by day. For them, the last rate is the important one, so that is the value you see. For you, however, will depend on your use case. You can choose to pick one of the following: mean, median, mode, max, min, first, last or anything else that makes sense for you.
Signal processing filtering
If you want to take a more mathematical approach to your problem, you could use a signal filtering technique to reduce high-frequencies from your signal.
What you need is a low-pass filter.
If you are using Excel, you certainly can do this.
However, I would recommend you do that in some programing language like Matlab or Python, that contain easier to use signal processing packages.
$endgroup$
I would say you have two options to choose from:
- Aggregate your data
- Use a low-pass-filter
Aggregating
Aggregating your data over long time periods is not cheap (whatever that means). It is a common way of displaying trends over long periods of time.
Take a look at how Bloomberg displays the exchange rate of EUR over USD.
You can filter by time period, and if you select 1 day, you see the hourly rate:
or you can filter by month, and see the rate aggregated by day. For them, the last rate is the important one, so that is the value you see. For you, however, will depend on your use case. You can choose to pick one of the following: mean, median, mode, max, min, first, last or anything else that makes sense for you.
Signal processing filtering
If you want to take a more mathematical approach to your problem, you could use a signal filtering technique to reduce high-frequencies from your signal.
What you need is a low-pass filter.
If you are using Excel, you certainly can do this.
However, I would recommend you do that in some programing language like Matlab or Python, that contain easier to use signal processing packages.
edited Aug 11 '18 at 7:45
answered Aug 7 '18 at 7:13
BrunoGLBrunoGL
1,061222
1,061222
add a comment |
add a comment |
Thanks for contributing an answer to Data Science Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdatascience.stackexchange.com%2fquestions%2f36572%2fhow-can-discard-peaks-values-from-a-chart%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown