-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deployed 94d5b5e with MkDocs version: 1.5.3
Unknown
committed
Feb 12, 2024
0 parents
commit b606d27
Showing
244 changed files
with
133,929 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<!-- --8<-- [start:usage] --> | ||
## Chart Name | ||
Coming soon! | ||
<!-- ### Simple | ||
=== "dx" | ||
```python | ||
dx.chart_name(df, ...) | ||
``` | ||
 | ||
=== "pd.options.plotting.backend = 'dx'" | ||
!!! info "Make sure you [enable `dx` as a pandas plotting backend](../plotting/overview.md#enabling-pandas-plotting-backend) first." | ||
```python | ||
df.plot(kind='chart_name', x='keyword_column', y='integer_column') | ||
``` | ||
 | ||
### Customized | ||
=== "dx" | ||
```python | ||
dx.chart_name( | ||
df, | ||
... | ||
) | ||
``` | ||
 | ||
=== "pd.options.plotting.backend = 'dx'" | ||
!!! info "Make sure you [enable `dx` as a pandas plotting backend](../plotting/overview.md#enabling-pandas-plotting-backend) first." | ||
```python | ||
df.plot( | ||
kind='chart_name', | ||
... | ||
) | ||
``` | ||
 --> | ||
|
||
<!-- --8<-- [end:usage] --> | ||
|
||
<!-- --8<-- [start:ref] --> | ||
## Chart Name | ||
Coming soon! | ||
<!-- ::: src.dx.plotting.dex.chart_name --> | ||
<!-- --8<-- [end:ref] --> |
Oops, something went wrong.