Live data from Hacker News

The Making of SciPy 1.0

numfocus.org

1–10 of 18 posts

Re: The Making of SciPy 1.0

#2
I love SciPy and the surrounding pythonic scientific computing tools! Especially Jupyter notebooks! I've been playing around with SymPy a lot lately and love that it pretty prints latex in notebooks. Here's a nb I did recently on the taylor series demoing quite a few features:

https://github.com/DanburyAI/SG_DLB_2017/blob/master/Noteboo...

Re: The Making of SciPy 1.0

#4
Working with these libraries and the ecosystem has been great. We tried Julia for a while but found it sorely lacking whereas python has such a great community and history and wealth of experience and wisdom to share.

Re: The Making of SciPy 1.0

#5

Working with these libraries and the ecosystem has been great. We tried Julia for a while but found it sorely lacking whereas python has such a great community and history and wealth of experience and wisdom to share.

What was Julia lacking? I know and use R, but have been considering Julia.

Re: The Making of SciPy 1.0

#6
This a great resource for engineers to wean themselves off Matlab. Maintaining Mathworks licenses is expensive and they can be assholes about license usage. We recently purchased some additional toolboxes and all they could do was bitch about how we had deployed our existing licenses. If you don’t like it why do you allow it?

In addition, recent versions of Matlab have broken some common plotting tools, contourf in particular. Where this once produced elegant and light weight results it now generates a tessellated mess with tiny gaps between elements that look awful in paper manuscripts and baloon the file size for no good reason. The Mathworks response? It fixes some edge case.[0]

I find many of students we take on as interns often lack more than rudimentary coding skills making the jump to Python easier.

[0] https://uk.mathworks.com/matlabcentral/answers/162257-proble...

Re: The Making of SciPy 1.0

#7

Working with these libraries and the ecosystem has been great. We tried Julia for a while but found it sorely lacking whereas python has such a great community and history and wealth of experience and wisdom to share.

I have had the opposite experience since most decent Python packages seem to have their own implementation of a parser, JIT, etc. in order to have any speed, making them monolithic monsters that are hard to contribute to and are hard to modify. Python's ecosystem seems to handle the basic cases very well, but when I wanted to "go to research land" in pretty much any scientific computing subject (mathematical optimization, numerical linear algebra, or differential equations), I quickly hit a wall that would require I write one of these monoliths myself in C++. I haven't hit any walls in Julia, but then again if you stay in the basic standard equations/models YMMV.

But SciPy is a great project and everyone can learn something from their successes.

Re: The Making of SciPy 1.0

#8
post #6

This a great resource for engineers to wean themselves off Matlab. Maintaining Mathworks licenses is expensive and they can be assholes about license usage. We recently purchased some additional toolboxes and all they could do was bitch about how we had deployed our existing licenses. If you don’t like it why do you allow it? In addition, recent versions of Matlab have broken some common plotting tools, contourf in p…

One can leave Matlab today with Octave.

Library support is perhaps better with SciPy, but Octave is free as in freedom, fast, works.

Re: The Making of SciPy 1.0

#9
post #6

This a great resource for engineers to wean themselves off Matlab. Maintaining Mathworks licenses is expensive and they can be assholes about license usage. We recently purchased some additional toolboxes and all they could do was bitch about how we had deployed our existing licenses. If you don’t like it why do you allow it? In addition, recent versions of Matlab have broken some common plotting tools, contourf in p…

In my work area, I was the first Python convert (from Visual Basic and a chain of other languages going back to 1981), and we hire scientists and engineers with no particular regard for their coding ability. We now have more than half a dozen people using Python at varying levels, with additional people mentioning that they're investigating it through online courses, home projects, etc.

A few of them have transitioned from Matlab. Even though we're a commercial business, buying each engineer a Matlab seat with packages is not a trivial expense, and asking for the money requires more management attention than we really need. With Matlab, it's: "You need Matlab for what? Why are you working on that?"

With Python, it's: "You solved that problem? Great."

But there are of course some caveats. Learning Python per se won't turn you into a professional software developer. A lot of people list Python on their resume's, and our interviewers are engineers and managers who only know that Python is a good buzzword to have. Learning Python ultimately translates into a widely varying ability to actually do anything. One of my colleagues has really taken to it, and has made an effort to develop disciplined programming skills beyond "coding." A couple others are using it for basic scripting, data analysis, and so forth. I've seen some horrendous code, and I'm torn about whether to intervene, when they are in fact getting useful results. Usually, I tell them about some things to learn on their own before they start their next project.

But that problem -- what really constitutes good programming skill for people who aren't formally trained, being hired by people who don't really know either -- isn't confined to Python.

Re: The Making of SciPy 1.0

#10
post #6

This a great resource for engineers to wean themselves off Matlab. Maintaining Mathworks licenses is expensive and they can be assholes about license usage. We recently purchased some additional toolboxes and all they could do was bitch about how we had deployed our existing licenses. If you don’t like it why do you allow it? In addition, recent versions of Matlab have broken some common plotting tools, contourf in p…

I don't see a reason for MATLAB anymore now that there's Julia. It takes the good parts of the linear algebra syntax and throws out the rest.
Post reply on HN