Questions tagged [smoothing]

Smoothing related to statistical programing solutions in which a signal is filtered to create an approximating function that attempts to capture important patterns in the data, while leaving out noise, or for visual clarity to see general trends.

In scientific software for statistical computing and graphics, function smooth.spline implements a smoothing spline; function ksmooth implements a kernel estimator; function loess implements LOESS.

1479 questions
-2
votes
1 answer

how we can find a smooth function to our data?

Suppose I have this small data T 69 59 100 70 35 1 matplot(t(T[1,]), type="l",xaxt="n") I want find a polynomial which is fit to data. (even over fit is ok) is there any way that I can do it in R?
user9272398
-2
votes
1 answer

Compute smoothed mean on time series

I have got a data.frame where one column represents dates in years and the other column observations of e.g. sea level in mm. I need to calculate the 10-year smoothed mean. Here some fake data: x = rnorm(1:100) #annual sea leavel rise date =…
aaaaa
  • 149
  • 2
  • 18
  • 44
-2
votes
1 answer

collapse and expand view beside listview

I have a custom listView the xml code of each row is:
mozhi jafr
  • 69
  • 2
  • 10
-3
votes
2 answers

How to smooth lines in a figure in Pandas?

I have this table: The data in the table I want to modify the graph by converting the lines into smooth lines, this how the graph looks like now: The current graph This is my code: import pandas as pd import seaborn as sns plotDf =…
RJ94
  • 49
  • 6
-3
votes
1 answer

rather than directly plotting ,need to plot smooth line chart python

i have a 3 df's fro 3 machines(Machine1/Machine2/Machine3) .Each df with 3 columns. Day-shift and production. sample df: Day-Shift Production Quality Day 11-01 20 A Night 11-01 45 A Day 11-02 65 A …
user13419531
-3
votes
1 answer

How to remove outliers from a data array in R

I would like to locate and remove the outlier in the measurement and replace with a smoothened value to capture the trend better. Please find the figure below Data with outliers
-3
votes
1 answer

Function with one input behaving different after first call

I need help with a problem regarding exponential smoothing in C++ The smoothing follows this equation : newValue = inputSignal*smoothFactor + (1-smoothFactor)*oldValue My function is supposed to only have one input parameter, that is the…
-5
votes
1 answer

Is this jQuery correct?

i would like to have smooth scroll effect on my page. And iv found this code jQuery(function($) { $('a[href*=#]:not([href=#])').click(function() { if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname…
KamilT
  • 11
  • 2
-11
votes
1 answer

Making smooth effect in WPF manually in C# with DispatcherTimer

I'm trying to make pretty effect with not using Storyboard or another ready/already done stuff in WPF. I want to make smooth effect, where on some event (like click) the UI element resizes for 2-3 seconds and bluring with changing color. All these…
Secret
  • 2,627
  • 7
  • 32
  • 46
1 2 3
98
99