summaryrefslogtreecommitdiff
path: root/doc/source/user
Commit message (Collapse)AuthorAgeFilesLines
* DOC,TST: Fix Pandas code example as per new releaseMukulika2022-01-261-1/+1
|
* DOC, ENH: Use pngs instead of svgs.Mukulika2022-01-016-5/+5
| | | | | | Latex doesn't support svgs, sphinx doesn't support pdfs, so the common image type is pngs. This fixes the pdf document build that was failing with the svgs.
* DOC: Use np alias in absolute beginners tutorial example (#20256)Alban Colley2021-10-311-1/+1
|
* DOC: fix broken link in "What is NumPy?" to broadcastingkhuynh2021-10-311-1/+1
|
* DOC: Added note about base attributeMukulika2021-10-281-1/+5
|
* DOC: Improved wording and organizationMukulika2021-10-281-58/+62
|
* DOC: Removed less used term countsMukulika2021-10-281-2/+2
|
* DOC: Added introductory paraMukulika2021-10-281-14/+23
|
* DOC: Create an explanation document for copies and viewsMukulika2021-10-282-0/+136
|
* fixing typo in numpy docVijay Arora2021-10-261-1/+1
|
* Merge pull request #20115 from ↵Charles Harris2021-10-211-2/+8
|\ | | | | | | | | rossbar/doc/absolute-beginners-match-axis-reduction-img DOC: Modify code in absolute beginners tutorial to match image
| * Add missing indefinite article.Ross Barnowski2021-10-141-1/+1
| |
| * Modify code to match img illustrating reduction along axis.Ross Barnowski2021-10-131-2/+8
| | | | | | | | Co-authored-by: MarsBarLee <mlee@quansight.com>
* | DOC:Reword array has one axisArushi Sharma2021-10-191-4/+5
|/
* ENH: Add spaces after punctuation in dtype repr/str. (#19686)Antony Lee2021-09-291-1/+1
| | | | | | | | | | | | | | | | | Before: ``` In [1]: np.dtype({"names": ["a"], "formats": [int], "offsets": [2]}) Out[1]: dtype({'names':['a'], 'formats':['<i8'], 'offsets':[2], 'itemsize':10}) ``` After: ``` In [1]: np.dtype({"names": ["a"], "formats": [int], "offsets": [2]}) Out[1]: dtype({'names': ['a'], 'formats': ['<i8'], 'offsets': [2], 'itemsize': 10}) ``` * Allow switching back to old dtype printing format. * Add changelog.
* Merge pull request #19957 from HaoZeke/capif2pyCharles Harris2021-09-271-45/+42
|\ | | | | DOC: Add syntax highlighting, update pronouns
| * MAINT: Apply suggestions from code reviewRohit Goswami2021-09-271-7/+7
| | | | | | | | Co-authored-by: Melissa Weber Mendonça <melissawm@gmail.com>
| * DOC: Add syntax highlighting, update pronounsRohit Goswami2021-09-271-45/+42
| |
* | Merge pull request #19983 from WarrenWeckesser/doc-c99Charles Harris2021-09-271-0/+3
|\ \ | | | | | | DOC: Specifically mention the C99 requirement in 'Building from source'
| * | DOC: Specifically mention the C99 requirement in 'Building from source'warren2021-09-271-0/+3
| |/
* | DOC: Remove reference to PyArray_MultiIter_SIZE. (#19976)Chiara Marmo2021-09-271-3/+2
|/ | | Remove docs reference to non-existent C macro
* Update basics.io.genfromtxt.rstDmitriy Fishman2021-09-271-1/+1
|
* Merge pull request #19903 from Fayyr/refguidefixMelissa Weber Mendonça2021-09-221-0/+1
|\ | | | | DOC: Fixed refguide errors for basics.broadcasting.rst
| * DOC: Fixed refguide errors for basics.broadcasting.rstFayyr2021-09-201-0/+1
| |
* | DOC: Typos found by codespellDimitri Papadopoulos2021-09-216-8/+8
| |
* | DOC:Fixed refguide errors for basics.creation.rstArryan Singh2021-09-201-13/+11
|/
* Merge pull request #19810 from charris/update-some-includesCharles Harris2021-09-031-8/+13
|\ | | | | MAINT: Minor include rationalizations.
| * MAIN: Minor include rationalization.Charles Harris2021-09-031-8/+13
| | | | | | | | | | | | | | - Replace "Python.h" by <Python.h> - Replace "structmember.h" by <structmember.h> - Replace <npy_config> by "npy_config" - Define PY_SSIZE_T_CLEAN before all Python.h includes in .c files.
* | DOC: Fix import of default_rngdoc/user-guide-default-rngRobert Kern2021-09-011-1/+1
| | | | | | Fixes #19812 19812
* | Merge pull request #19407 from Mukulikaa/indexing-docs-mergeMatti Picus2021-08-301-305/+745
|\ \ | |/ |/| DOC: Rearranged parts of the Indexing docs to consolidate content
| * DOC: Removed unnecessary section linkMukulika2021-08-301-3/+1
| |
| * DOC: Renamed section to Basic indexingMukulika2021-08-281-5/+5
| | | | | | Co-authored-by: Ross Barnowski <rossbar@berkeley.edu>
| * DOC: Added examples and other minor changes after reviewMukulika2021-08-281-59/+142
| |
| * DOC: Reformatted examplesMukulika2021-08-201-51/+52
| |
| * DOC: Replaced indexing stub doc with routinesMukulika2021-08-181-5/+3
| |
| * DOC: Exchanged the contents of Indexing basics and Indexing ref docsMukulika2021-08-181-38/+701
| |
| * DOC: Rearranged parts of the Indexing docs to consolidate contentMukulika2021-08-181-343/+40
| |
* | fix basics.creation.rst to address issue 19726Derek Huang2021-08-211-2/+2
| |
* | Grammatical errors:yan2021-08-181-1/+1
|/ | | | | | | B = np.eye((2, 2)) It should be B = np.eye(2, 2) Signed-off-by: yan <yan-wyb@foxmail.com>
* DOC: Created fundamentals doc for explanations in `ufunc` reference doc (#19516)Mukulika2021-08-123-0/+342
| | | | | | | | | | * Created fundamentals doc for explanations in ufunc reference doc * Move explanatory material on ufuncs and broadcasting from the reference guide to the ufunc fundamentals and/or broadcasting document in the user guide * Added examples for ufunc method arguments * Reorganized broadcasting duplicate content from ufuncs doc Co-authored-by: Melissa Weber Mendonça <melissawm@gmail.com>
* DOC: Reorganized the documentation contribution docs (#19645)Mukulika2021-08-122-4/+5
| | | | | | | | * DOC: Reorganized documentation contribution docs 1. Removed Documentation conventions page 2. Merged A guide to NumPy documentation into How to contribute to NumPy documentation 3. Moved Building NumPy reference and docs to Development section 4. Removed the Documentation index stub
* Remove PyArray_MultiIter_SIZE definition. Tentative definition for ↵Chiara Marmo2021-07-271-2/+2
| | | | PyArray_FinalizeFunc.
* Fix sphinx warnings in c-info.beyond-basics.Chiara Marmo2021-07-271-4/+4
|
* DOC: Additional ideas related to numpy-tutorials integration (#19422)Ross Barnowski2021-07-192-2/+2
| | | | | | | | | | | * Add navbar link to numpy-tutorials. * External links instead of tutorials stub. * Update tutorial-svd link to intersphinx. * Point tutorials to features, not applications. * Fix linter
* Merge pull request #19369 from Mukulikaa/broadcast-docs-mergeMatti Picus2021-07-1812-263/+4498
|\ | | | | DOC: Moved VQ example & target from duplicate array broadcasting doc
| * DOC: Fixed nested formattingMukulika2021-07-141-2/+2
| | | | | | Co-authored-by: Melissa Weber Mendonça <melissawm@gmail.com>
| * DOC: Added graphics for examples with alt-textsMukulika2021-07-1012-211/+4427
| | | | | | | | | | | | | | 1. Deleted older formats of the graphics which belonged to the orphan doc 2. Added SVGs for the same diagrams (with necessary corrections) 3. Added detailed alt-texts for each diagram and graph 4. Removed all content from the orphan doc since all of it has been moved
| * DOC: Added link to updated doc in array-broadcasting-in-numpy docMukulika2021-07-021-0/+3
| |
| * DOC: Changed figure name and removed some duplicate parts from orphan docMukulika2021-07-012-47/+1
| |
| * DOC: Moved VQ example & target from duplicate docMukulika2021-06-292-13/+75
| |