-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[JOSS Review]: Quality of writing #5
Comments
I think it is done now. Best regards. |
Hi, There is still uncorrected ones, please check all (for example)
becomes
and if it is too long, it could be divided into two lines properly. Note: You can compile and preview the pdf file using this tool |
Hello, So I think the syntax should be ok this time. |
seems okay. thank you. |
Dear authors,
Due to the paper submission in JOSS:
There is a section called
in the reviewing list.
First of all, I am sorry if I open too much issues, however, it is very convenient to talk each single item in a separate window.
The language of the paper is good. However expressions and statements are not well structured. Please consider using a single (and unique) rule when you present code snippets in the manuscript. I am suggesting the general rule (if you don't adopt your own):
1, 2, 3, ..., n
a = 5
and2 + 2 = 4
so the statement
n,d,d_nonzero,k,sigma =100,100,5,1,0.5
becomes
n, d, d_nonzero, k, sigma = 100, 100, 5, 1, 0.5
and the statement
(X,C,y),sol = random_data(n,d,d_nonzero,k,sigma,zerosum=True, seed = 123 )
becomes
(X, C, y), sol = random_data(n, d, d_nonzero, k, sigma, zerosum = True, seed = 123)
You can also consider saving space by refactoring
print("Relevant variables : {}".format(list(numpy.nonzero(sol)) ) )
to
print("Relevant variables: {}".format(list(numpy.nonzero(sol))))
Please check all the codes in the manuscript.
Thank you in advance.
The text was updated successfully, but these errors were encountered: