summaryrefslogtreecommitdiff
path: root/doc/source/user
Commit message (Collapse)AuthorAgeFilesLines
* DOC Improve formatting in the depending_on_numpy documentation (#18518)Roman Yurchak2021-03-011-1/+1
|
* DOC: address a few more review comments on downstream packaging guideRalf Gommers2021-02-281-7/+5
| | | | [ci skip]
* DOC: address review comments on guide for downstream package authorsRalf Gommers2021-02-281-7/+13
|
* DOC: add guide for downstream package authorsRalf Gommers2021-02-272-0/+144
|
* Remove LinAlg heading, mv link to further reading.Ross Barnowski2021-02-211-7/+2
| | | | | | * Remove reference to algebra in the intro text. * Link to linalg tutorial in Further Reading * Remove linalg heading + WIP from quickstart.
* Link quickstart linalg to tutorial-svdRoss Barnowski2021-02-191-47/+1
| | | | Replace WIP section with link to well-developed svd tutorial.
* DOC: remove explanations_index reference - See #17845Mary2021-02-181-1/+0
|
* Merge branch 'master' of https://github.com/numpy/numpy into iss17845p3aMary2021-02-172-75/+313
|\
| * DOC: Update arraycreation (#17887)Ryan C Cooper2021-02-121-74/+312
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * rewriting basics.creation * halfway through first draft basics.creation * first draft for array creation rewrite * correct some broken links * correct typo in code format * Apply suggestions from code review - @melissawm PEP8 corrections and some other mistakes. thanks @melissawm! Co-authored-by: Melissa Weber Mendonça <melissawm@gmail.com> * remove comments on L347 and 356, fix link on L22 * remove typo on L355 section title error * change ND array -> ndarray docs consistent vocab * added np.* to numpy functions and dtypes * @mattip review changes Great changes by @mattip. I like the change from "object" -> "function" Co-authored-by: Matti Picus <matti.picus@gmail.com> * added default_rng() example and some links * Update doc/source/user/basics.creation.rst reformat 3D array L40 Co-authored-by: Eric Wieser <wieser.eric@gmail.com> * Apply suggestions from code review thanks @eric-wieser for catching some formatting typos. Co-authored-by: Eric Wieser <wieser.eric@gmail.com> * working on updates and trying to build * fixed heading underlines and some links * Apply suggestions from code review fixing link to default_rng Co-authored-by: Eric Wieser <wieser.eric@gmail.com> * Apply suggestions from code review - @melissawm adding @melissawm comments to changes Co-authored-by: Melissa Weber Mendonça <melissawm@gmail.com> * reword ndarray creation distinctions * L34 indented and L94 literal block removed * L34 remove newline to try to fix indent make error * Update doc/source/user/basics.creation.rst @melissawm caught a formatting issue for a list, `::` -> `:` and extra line added Co-authored-by: Melissa Weber Mendonça <melissawm@gmail.com> * MAINT: Update doc/source/user/basics.creation.rst Co-authored-by: Eric Wieser <wieser.eric@gmail.com> * MAINT: Update doc/source/user/basics.creation.rst Co-authored-by: Eric Wieser <wieser.eric@gmail.com> * MAINT: Update doc/source/user/basics.creation.rst Co-authored-by: Eric Wieser <wieser.eric@gmail.com> Co-authored-by: Melissa Weber Mendonça <melissawm@gmail.com> Co-authored-by: Matti Picus <matti.picus@gmail.com> Co-authored-by: Eric Wieser <wieser.eric@gmail.com> Co-authored-by: Charles Harris <charlesr.harris@gmail.com>
| * DOC: Corrected numpy.power example.Mary2021-02-021-1/+1
| | | | | | | | See #18256
* | DOC: remove explanations.rst - See #17845Mary2021-02-161-14/+0
|/
* DOC: __array__ accepts a dtype argumentRyan Soklaski2021-01-261-8/+8
|
* Merge pull request #18230 from seberg/issue-17977Charles Harris2021-01-261-0/+2
|\ | | | | DOC: Clarify the type alias deprecation message
| * Fix ref to user guide in release notes.Ross Barnowski2021-01-261-0/+2
| |
* | Fix example in array subclassing doc (#18235)Nicolas Hug2021-01-261-1/+1
|/
* Merge pull request #18007 from eric-wieser/float-printing-docCharles Harris2020-12-281-0/+2
|\ | | | | DOC: Add a brief explanation of float printing
| * DOC: Add a brief explanation of float printingEric Wieser2020-12-161-0/+2
| | | | | | | | Also link to the overflow docs here.
* | DOC: fix for doctestsmattip2020-12-161-4/+4
|/
* Merge pull request #17976 from rnarkk/format-quickstartMatti Picus2020-12-161-197/+181
|\ | | | | DOC: Add/remove spaces in snippets and re-format here and there
| * Remove spaces around **Rin Arakaki2020-12-161-6/+6
| |
| * Add/remove spaces in snippets and re-format here and thereRin Arakaki2020-12-111-200/+184
| |
* | Merge pull request #16370 from takanori-pskq/i16217Matti Picus2020-12-162-8/+8
|\ \ | | | | | | DOC: Fix for building with sphinx 3
| * | DOC: Fix for buildling with sphinx 3takanori-pskq2020-11-062-8/+8
| | |
* | | DOC: Rename basics to fundamentals + added description (#17889)Ryan C Cooper2020-12-131-5/+9
| | |
* | | Merge pull request #17888 from spaceofmiah/patch-1Ralf Gommers2020-12-121-1/+1
|\ \ \ | |_|/ |/| | DOC: Correct sentence/statement composition
| * | Correct sentence/statement compositionAgbonze Osazuwa2020-12-011-1/+1
| | | | | | | | | | | | | | | Incorrect statement spotted *In the simplest example of broadcasting, the scalar ``b`` is stretched to become an array ~of with the same~ shape as ``a`` so the shapes are compatible for element-by-element multiplication.*
* | | DOC: fixed typo in np-indexing.png explaining [-2:] slice in user guidesfolje02020-11-291-0/+0
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | In User Guide of NumPy in tutorial for absulute beginners, i.e. in documentation document doc/source/user/absulute_beginners.rst there was a typo in the image np-indexing.png visualizing slices in **Indexing and slicing** section. Namely, in the first image in mentioned section, the last visualized array (under `data[-2:]` command), there was a picture of `data[:]` or `data[0:3]` (i.e. array([1,2,3])) presenting the slice indexing. But it should be a picture of of `data[-2:]` (i.e. array([2,3])). This commit fixes this by adding additional picture of array([2,3]) under `data[-2:]` command and changing command above last array([1,2,3]) pic to title named `data` to preserve the idea behind slice indexing.
* | BUG: ensure _UFuncNoLoopError can be pickled (#17377)bernie gray2020-11-181-1/+1
|/ | | | | | | | | * BUG: ensure _UFuncNoLoopError can be pickled; closes #16490 * update quickstart.rst * add round trip pickle test * move _ArrayMemoryError picking test
* Add info on transopose to absolute beginners tutorial (#17703)prateek arora2020-11-031-4/+11
| | | | | | Adds a blurb about the transpose property of ndarray and updates formatting of some rst inline literals. Co-authored-by: Ross Barnowski <rossbar@berkeley.edu>
* DOC: Fix some referencestakanori-pskq2020-10-261-2/+2
|
* Update doc/source/user/basics.rec.rstTakanori H2020-10-241-1/+1
| | | Co-authored-by: Eric Wieser <wieser.eric@gmail.com>
* DOC: Fix some referencestakanori-pskq2020-10-242-3/+3
|
* DOC: Fix typos (general documentation)Alexander Kuhn-Regnier2020-10-211-2/+2
|
* DOC: Fix typostakanori-pskq2020-10-151-1/+1
|
* Apply suggestions from code reviewEric Wieser2020-10-141-0/+2
|
* DOC: Fix wrong blockquotestakanori-pskq2020-10-141-12/+0
|
* Merge pull request #17523 from bjnath/new-docpage-top-linksCharles Harris2020-10-134-27/+21
|\ | | | | DOC: Update top links in landing page
| * DOC: Explain :orphan: in PR #17523Ben Nathanson2020-10-101-0/+6
| |
| * DOC: Delete unused file in PR #17523Ben Nathanson2020-10-091-10/+0
| | | | | | | | To fix CircleCI fail; missed it in the c6dc9d6 commit.
| * DOC: Update top links in landing pageBen Nathanson2020-10-093-17/+15
| | | | | | | | | | | | Same intent as PR #17365 -- point "Installation" links to Hugo, start page with "What is NumPy", let Hugo page link to "Troubleshooting ImportError".
* | DOC: Fix typo (#17534)Takanori H2020-10-111-1/+1
|/
* DOC: Rename 'Quickstart tutorial' (#17504)Ben Nathanson2020-10-081-9/+7
| | | Remove tutorial wording in favor of article, minor wording updates.
* DOC: Fix broken referencesEric Wieser2020-10-061-32/+32
| | | | Unfortunately we can't use `np.` as a module name alias
* Merge pull request #17353 from bjnath/how-to-ioCharles Harris2020-10-053-21/+329
|\ | | | | DOC: How-to guide for I/O
| * DOC: Revise credit line per CCBen Nathanson2020-10-031-1/+2
| | | | | | | | Adds "CC BY 4.0" credit to the Pauli Vertanen example.
| * DOC: One more bash->python in PR #17353Ben Nathanson2020-09-261-1/+1
| |
| * DOC: Bash examples in PR #17353 now PythonBen Nathanson2020-09-261-25/+31
| | | | | | | | | | And other suggestions by @eric-wieser. Also standardizes quotes as '"'.
| * DOC: Incorporate blob suggestions in PR #17353Ben Nathanson2020-09-231-3/+3
| |
| * DOC: Update pickle section in PR #17353Ben Nathanson2020-09-231-6/+5
| |
| * DOC: History cleanup for #17353Ben Nathanson2020-09-233-21/+323
| |