python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Plot derivations of multiple logistical curves with ggplot and purrr
The rows of data frame "pars" hold the two parameters defining logistical curves:
library(ggplot2)
library(purrr)
pars <- data.frame(
diff = c(-1.5, 2.5),
disc = c(1.2, 2.5)
)
These...

MaVe
Votes: 0
Answers: 2
Calculating first and second derivative when coefficients stored in a csv file in python
I have a csv file with around 1000 regression results looking like this:
x^4_coeff x^3_coeff x^2_coeff x_coeff intercept
10 -.43 0.05 12 298
from the first set of coeff...
sampak
Votes: 0
Answers: 2
Steepest descent and finding optimal step size
I'm trying to a Steepest descent for a function with 2 variables. It works fine with known step size which = 0.3. But I want to find a way to optimize step size and create a function to find a good st...
Vladimir Alkin
Votes: 0
Answers: 1