TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Scipy Lecture Notes – Learn numerics, science, and data with Python

473 pointsby kerckeralmost 9 years ago

7 comments

tomrodalmost 9 years ago
This is a great first start. Some resources the author may consider drawing upon, depending on whether and how they choose to expand:<p>[1] <a href="http:&#x2F;&#x2F;quant-econ.net&#x2F;py&#x2F;index.html" rel="nofollow">http:&#x2F;&#x2F;quant-econ.net&#x2F;py&#x2F;index.html</a><p>[2] <a href="http:&#x2F;&#x2F;people.duke.edu&#x2F;~ccc14&#x2F;sta-663&#x2F;" rel="nofollow">http:&#x2F;&#x2F;people.duke.edu&#x2F;~ccc14&#x2F;sta-663&#x2F;</a>
Dawny33almost 9 years ago
One doc to learn them all :)<p>The `Optimizing and debugging code` part is where most data scientists falter.<p>So, this is a really nice effort for bringing it all together!
cjf4almost 9 years ago
I wish I had this when I was learning the Python data analysis ecosystem. Does a nice job of clearly distinguishing the differences of the major elements.
KKKKkkkk1almost 9 years ago
I hope you don&#x27;t take this as trolling, but: What&#x27;s the deal with matrix multiplication in numpy? I wanted to dot-product two vectors yesterday, and I got it right only on the third try:<p><pre><code> x.T * y # nope x.dot(y) # still no x.inner(y) # ok </code></pre> This is a disaster. I&#x27;m sure there are valid historical reasons for this state of affairs, but this makes numpy an environment where random idiosyncrasies get cast in concrete.
评论 #12181671 未加载
评论 #12181711 未加载
评论 #12180590 未加载
评论 #12180862 未加载
评论 #12181058 未加载
Fenericalmost 9 years ago
This looks like a great document to help one get started on the road to using Python for lots of STEM type tasks. Pandas fans: don&#x27;t be put off by the lack of mention of it on the title page, as it is covered in there, too.
tsaprailisalmost 9 years ago
Look like it&#x27;s covering both Python 2 &amp; 3. Good job.
评论 #12182608 未加载
icalcalmost 9 years ago
Good job