-
Notifications
You must be signed in to change notification settings - Fork 28
doc improvements #544
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
doc improvements #544
Conversation
WalkthroughDocumentation updates: index and Highlights wording changed, the “Supported file formats” section removed and replaced by a new Changes
Possibly related PRs
Suggested labels
Pre-merge checks and finishing touches❌ Failed checks (1 inconclusive)
✅ Passed checks (2 passed)
✨ Finishing touches🧪 Generate unit tests
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro 📒 Files selected for processing (3)
✅ Files skipped from review due to trivial changes (2)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
🔇 Additional comments (1)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Nitpick comments (1)
docs/tutorial/processing.qmd (1)
171-171: Capitalize NaN for consistency.Apply:
-Notice the nan values at the start of the time axis. These can be trimmed with [`Patch.dropna`](`dascore.Patch.dropna`). +Notice the NaN values at the start of the time axis. These can be trimmed with [`Patch.dropna`](`dascore.Patch.dropna`).
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (7)
docs/index.qmd(1 hunks)docs/notes/dft_notes.qmd(1 hunks)docs/recipes/contributing_to_documentation.qmd(1 hunks)docs/supported_formats.qmd(1 hunks)docs/tutorial/patch.qmd(1 hunks)docs/tutorial/processing.qmd(2 hunks)docs/tutorial/visualization.qmd(1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
- GitHub Check: test_build_docs
🔇 Additional comments (8)
docs/tutorial/patch.qmd (1)
135-135: Grammar fix LGTM.“manages” reads correctly and improves clarity.
docs/notes/dft_notes.qmd (1)
268-268: Typo fix LGTM.“Scaling of DFT” link text corrected.
docs/recipes/contributing_to_documentation.qmd (1)
40-40: Wording fix LGTM.Reads clearly now.
docs/tutorial/processing.qmd (1)
274-274: Sentence tweak LGTM.Pluralization and clarity improved.
docs/index.qmd (2)
21-21: Callout wording LGTM.Ecosystem phrasing is concise and accurate.
16-16: Link to supported formats — path valid; no stale references found.
docs/supported_formats.qmd exists; the only reference found is docs/index.qmd:16.docs/tutorial/visualization.qmd (1)
22-22: Heading capitalization — confirm anchor stability for "Wiggle" (docs/tutorial/visualization.qmd:22).Repository search returned no matches for "#wiggle". Manually verify inbound links to visualization.qmd#wiggle (or built visualization.html#wiggle) still resolve and update links or the heading slug if needed.
docs/supported_formats.qmd (1)
7-16: Make boolean replacement safer and center numeric columns.Only replace boolean dtypes to avoid converting numeric 0/1; center numeric columns with numalign.
File: docs/supported_formats.qmd (lines 7–16)
```{python} #| echo: false #| output: asis -import pandas as pd from dascore.io.core import FiberIO -out_str = FiberIO.get_supported_io_table().replace(True, value='✅').replace(False, value='❌').to_markdown(index=False, stralign="center") +df = FiberIO.get_supported_io_table() +# Only replace boolean columns +bool_cols = df.select_dtypes(include="bool").columns +df[bool_cols] = df[bool_cols].replace({True: "✅", False: "❌"}) +out_str = df.to_markdown(index=False, stralign="center", numalign="center") out_str += '\n: {.striped}' print(out_str)Verification: sandbox lacks Quarto ("/bin/bash: line 2: quarto: command not found"); run locally: quarto preview docs/supported_formats.qmd to confirm emoji rendering and styling. </blockquote></details> </blockquote></details> </details> <!-- This is an auto-generated comment by CodeRabbit for review status -->
|
✅ Documentation built: |
Description
This PR fixes a few typos in the docs and makes the DASCore landing page a bit less cluttered.
Checklist
I have (if applicable):
Summary by CodeRabbit