What I've got
I'm setting up a scoring model for a Q&A-system and I'm implementing different score-distributions based on a scale from 0 to a given maximum value considering n cases. For instance, I managed to create a log (ln) curve as follows:
n_cases <- 5
val_max <- 10
val_step <- val_max/n_cases
plot(
log(exp(val_max))*n_cases/c(1:n_cases) * (val_step/(n_cases-1)*(c(1:n_cases)-1)) / val_step
)
What I'm trying to do
However, now I'm trying to figure out how to get those values for a quarter circle such as in the log-example from above. This answer gives me an idea how to do it, but I didn't manage to get what I want.
This is what I've got currently, without an idea where to put the maximum value as trial & error didn't really give me a solution either:
plot(
exp(pi * 1i * seq(0, 2, length.out = n_cases+1)[-1])
)
Thank you for your suggestions!