Skip to content

Commit 37658b6

Browse files
committed
🎨 link API Reference of new create functions
1 parent f4c1cec commit 37658b6

File tree

4 files changed

+16
-6
lines changed

4 files changed

+16
-6
lines changed

docs/api_examples/box_violin_plot.ipynb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,9 @@
221221
"metadata": {},
222222
"source": [
223223
"## 2. Basic Violin Plot\n",
224-
"A basic violin plot can be created by simply providing the `x` and `y` columns from the DataFrame, along with style options like `title`."
224+
"A basic violin plot can be created by simply providing the `x` and `y` columns from the DataFrame,\n",
225+
"along with style options like `title`\n",
226+
"using [`create_violin_plot`](vuecore.plots.basic.violin.create_violin_plot) ."
225227
]
226228
},
227229
{

docs/api_examples/box_violin_plot.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,9 @@
149149

150150
# %% [markdown]
151151
# ## 2. Basic Violin Plot
152-
# A basic violin plot can be created by simply providing the `x` and `y` columns from the DataFrame, along with style options like `title`.
152+
# A basic violin plot can be created by simply providing the `x` and `y` columns from the DataFrame,
153+
# along with style options like `title`
154+
# using [`create_violin_plot`](vuecore.plots.basic.violin.create_violin_plot) .
153155

154156
# %%
155157
# Define output file path for the PNG basic violin plot

docs/api_examples/histogram_plot.ipynb

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,8 @@
134134
"metadata": {},
135135
"source": [
136136
"### 0.3. Create sample data\n",
137-
"We create a synthetic dataset simulating gene expression data across two experimental conditions to demonstrate how histograms can visualize data distribution."
137+
"We create a synthetic dataset simulating gene expression data across two experimental\n",
138+
"conditions to demonstrate how histograms can visualize data distribution."
138139
]
139140
},
140141
{
@@ -260,7 +261,9 @@
260261
"metadata": {},
261262
"source": [
262263
"## 1. Basic Histogram Plot\n",
263-
"A basic histogram plot can be created by simply providing the `x` and `y` columns from the DataFrame, along with style options like `title`."
264+
"A basic histogram plot can be created by simply providing the `x` and `y` columns from the DataFrame,\n",
265+
"along with style options like `title`\n",
266+
"using [`create_histogram_plot`](vuecore.plots.basic.histogram.create_histogram_plot) ."
264267
]
265268
},
266269
{

docs/api_examples/histogram_plot.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@
8282

8383
# %% [markdown]
8484
# ### 0.3. Create sample data
85-
# We create a synthetic dataset simulating gene expression data across two experimental conditions to demonstrate how histograms can visualize data distribution.
85+
# We create a synthetic dataset simulating gene expression data across two experimental
86+
# conditions to demonstrate how histograms can visualize data distribution.
8687

8788
# %% tags=["hide-input"]
8889
# Set a random seed for reproducibility of the synthetic data
@@ -117,7 +118,9 @@
117118

118119
# %% [markdown]
119120
# ## 1. Basic Histogram Plot
120-
# A basic histogram plot can be created by simply providing the `x` and `y` columns from the DataFrame, along with style options like `title`.
121+
# A basic histogram plot can be created by simply providing the `x` and `y` columns from the DataFrame,
122+
# along with style options like `title`
123+
# using [`create_histogram_plot`](vuecore.plots.basic.histogram.create_histogram_plot) .
121124

122125
# %%
123126
# Define output file path for the PNG basic histogram

0 commit comments

Comments
 (0)