Tagged Questions
0
votes
1answer
172 views
Simple linear regression for data set
I am looking to create a trend function in C# for a set of data and it seems like using a big math library is a bit overkill for my needs.
Given a list of values such as 6,13,7,9,12,4,2,2,1. I would ...
0
votes
2answers
137 views
Applying mathematical expressions on time series data
I have parsed HL7 file and have generated some values. So that now, I have series of values over time for different identifiers of OBX segment of HL7 file.
Now, as per requirement I want to apply ...
1
vote
1answer
3k views
linear regression/trend line with ms charting
I have data that are numbers both on x and y and have charted them using mschart 4.0
I need to add a trend line/linear regression to a bunch of points I have. The data on x and y are both numbers ...
1
vote
0answers
845 views
How to draw the best fit line with c#.net
I have been trying to do a regression analysis on some data points with c#.net. Can anyone suggest some references to me to be able to plot the data points as well as the best fit line on one chart ...
11
votes
6answers
7k views
Efficient Multiple Linear Regression in C# / .Net
Does anyone know of an efficient way to do multiple linear regression in C#, where the number of simultaneous equations may be in the 1000's (with 3 or 4 different inputs). After reading this article ...