Tagged Questions
0
votes
1answer
246 views
Create Line in Highcharts with start and end point
please have a look at following example:
<script type="text/javascript">
var $j = jQuery.noConflict();
function recalculateUTCValue(startingUTC, add) {
zeit = new Date(startingUTC);
...
0
votes
1answer
475 views
Calculate Confidence interval values and plot the curves accordingly
I have [x,y] pair of data that I am plotting. I am computing the best fit line for the curve using the least-square regression model and predicting the y-values accordingly.
I now want to generate ...
0
votes
2answers
218 views
Linear regression to predict the y-value for the trend series
I have [x,y] pairs where x value is in Unix- time values and y in float. I am needing to find the best fit line for this series. I am using the linear regression model as in this link below:
...
10
votes
3answers
3k views
Linear Regression in Javascript
I want to do Least Squares Fitting in Javascript in a web browser.
Currently users enter data point information using HTML text inputs and then I grab that data with jQuery and graph it with Flot.
...