Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I need help in choosing the best library to implement the Kolmogorov-Smirnov Test (Two-Sample) in Java.
I have tried using JavaStatisticalClass.
Problem with this library is that I can't specify/choose the "Significance Level" by myself.
Do you have any suggestions of other libraries where I can chose the significance level?
Instead of specifying the significance level a priori you can determine the p-value using JavaStatisticalClass and compare this value with the intended significance.
How about jsc.goodnessfit.KolmogorovTest?
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 9 days ago.
Improve this question
I am going to develop a claim management system and would like to have a simple work flow for it in java
When i searched i come across https://formsflow.ai/ (or) https://www.jbpm.org/ and not sure whether there is any other good workflow to handle simple work flows and efficient and not very complex
Please kindly advise.
Thanks
Advise/Suggestion/Comments
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I'm looking (have looked on Google, no luck) for a Java library that can produce graphs of mathematical functions and equations. It would be great if I could us it as a JComponent for adding to frames, but I can do without. If there aren't any good ones I'll probably make one anyway.
Thanks in advance
Did you check jfreechart?
http://www.jfree.org/jfreechart/samples.html
As jfreechart uses data series you will have to sample your matchematical functions.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I would expect them to be documented here: http://tutor.rascal-mpl.org/Rascal/Libraries/lang/java/m3/Core/Core.html, since that's the package you need to import to get them, but they're not there are searching the documentation for them doesn't result in much.
They are undocumented as of yet. Have a look at the (simple) code in the libraries. You can find them in the Rascal explorer as a library jar in lang/java/m3/Core.rsc, or online on github at https://github.com/cwi-swat/rascal/blob/master/src/org/rascalmpl/library/lang/java/m3/Core.rsc
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Is there a library that can compare two javabeans by their properties and tell you the differences between them?
I was thinking this would be something BeanUtils will do but can't find it in the documentation
Basically I want to 'diff' them
No, there is no library for this, because it is trivial to implement.
Just use the code from the link that artbristol provided in the comment.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Could your recommend some good big integer calculation library in C/C++/Java and it is better to support logarithmetic.
Thanks.
For C/C++ I would recommend the GNU Multiple Precision Library.
For Java you might check the built-in math API. It provides by far less functionality than GMP, but depending on what you need, it might meet your requirements.
Java has classes for that in java.math. (BigInteger for instance.)