Kirill Müller
Kirill Müller
Any deterministic order is better than randomness. Sorted output seems easier to grasp and feels more consistent with `ls`, though. From your question, I'm guessing that `fd` implements a producer-consumer...
Thank you for the thoughtful response. My PQ idea was naive. If there is already a single output thread, things look simpler to me. I'm sure I'm overlooking details. Assuming...
Thanks! Would you like to contribute a pull request? @szhorvat: can you please comment on the naming and argument choices?
For GitHub, https://happygitwithr.com/ is a great resource. Skip chapters 6-8 if you have installed Git. For a hands-on approach, try chapters 35 and 36. Things are getting more complicated if...
@clpippel: Copilot has hand-rolled an R implementation in #2426. Depending on the use case, it might already be sufficient for you. I asked Copilot to make use of vectorization, let's...
The underlying C core function no longer returns this component. My attempts to use the new `igraph_plfit_result_calculate_p_value()` didn't give satisfactory results, so I gave up. @jhollway: You mentioned in https://github.com/stocnet/migraph/issues/284...
I remember testing with the example given here, and the p-value came out as zero. @Antonov548: can you please give it another try?
I ran with the example in the OP, there the p-value comes out as 0.98. Are you expecting consistency in the p-values between igraph 1.6.0 and igraph >= 2.0.0?
I added a stub. To be continued: - C: Implement `R_igraph_power_law_fit_new()` in `interface-extra.c`, forwarding to `R_igraph_power_law_fit()` and to `igraph_igraph_plfit_result_calculate_p_value()` in case the p-value is to be calculated - R: Add...
Good point. The reason for distinguishing this is that the computation of the p-value is expensive and optional. What should the default be in your opinion? Slow and batteries included,...