Skip to content

Adding jupyter #1496

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

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import Welcome from "@components/Welcome";
import Usecases from "@components/Usecases";
import Products from "@components/Products";
import Clients from '@components/Clients'
import JupyterCell from '@theme/JupyterCell';

<head>
<title>
Expand All @@ -40,6 +41,8 @@ import Clients from '@components/Clients'

## Discover by product

<JupyterCell source={`import numpy as np import matplotlib.pyplot as plt x1 = np.linspace(0.0, 5.0) x2 = np.linspace(0.0, 2.0) y1 = np.cos(2 * np.pi * x1) * np.exp(-x1) y2 = np.cos(2 * np.pi * x2) fig, (ax1, ax2) = plt.subplots(2, 1) fig.suptitle('A tale of 2 subplots') ax1.plot(x1, y1, 'o-') ax1.set_ylabel('Damped oscillation') ax2.plot(x2, y2, '.-') ax2.set_xlabel('time (s)') ax2.set_ylabel('Undamped') plt.show()`} />

Our products help you make the most of your customers' consented business data.

<Products mini={true} verbose={false}/>
Expand Down
1 change: 1 addition & 0 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ const config = {
],

plugins: [
'@datalayer/jupyter-docusaurus-plugin',
"docusaurus-plugin-sass",
'@docusaurus/theme-live-codeblock',
'docusaurus-plugin-image-zoom',
Expand Down
Loading