python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to change The Ring of the polynomial in Julia
Main
using AbstractAlgebra
include("./lib.jl");
S, (a,b,c) = PolynomialRing(QQ,["a","b","c"])
RR = AbstractAlgebra.RealField
s1 = S(b^2*a + c*a - 1)
s2 = S(c*a...
Ahmet Yusuf
Votes: 0
Answers: 0
How to plot a best fit curve in Julia when the data is a time series?
I'm trying to plot some measurements over time with a best-fit curve, using Julia's plotting tools. There's already a fairly good answer how to do this with a simple numeric data series:
Julia: How to...
wu-lee
Votes: 0
Answers: 0
Polynomial Regression - Unused Arguments
I have a dataset with 269 rows and only two variables (A: measurements, B: the time-point at which it was registered, goes from 1 to 280).
I already removed all NaN values after removing outliers with...
philphillis
Votes: 0
Answers: 0
R ggplot error bars for 4th degree polynomial
I'm trying to reproduce the right side of this graph from Introduction to Statistical Learning using R (Figure 7.1, p267):
Here is the code I'm using, and while the curve seems on point, the error ba...
Louis Maiden
Votes: 0
Answers: 0