-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
efff9fe
commit 99c056c
Showing
38 changed files
with
8,613 additions
and
7 deletions.
There are no files selected for viewing
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,6 @@ | ||
.Rproj.user | ||
.Rhistory | ||
.RData | ||
.Ruserdata | ||
|
||
/.quarto/ |
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,29 @@ | ||
project: | ||
type: website | ||
output-dir: docs | ||
|
||
website: | ||
page-navigation: true | ||
title: "Piepy" | ||
|
||
navbar: | ||
left: | ||
- href: index.qmd | ||
text: Home | ||
|
||
- href: documentation/index.qmd | ||
text: Documentation | ||
|
||
- href: case_study/index.qmd | ||
text: Case study | ||
|
||
right: | ||
- icon: github | ||
href: https://github.com/andreaczhang/piepy | ||
|
||
format: | ||
html: | ||
theme: flatly | ||
# css: styles.css | ||
toc: true | ||
|
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,20 @@ | ||
--- | ||
title: "Case study" | ||
listing: | ||
- id: case | ||
fields: [title, description] | ||
contents: | ||
- "rainfall.qmd" | ||
#- "ts.qmd" | ||
type: table | ||
sort: false # keep original order | ||
filter-ui: false | ||
sort-ui: false | ||
categories: true | ||
--- | ||
|
||
|
||
|
||
::: {#case} | ||
::: | ||
|
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,19 @@ | ||
--- | ||
title: "Rain fall" | ||
format: html | ||
jupyter: python3 | ||
--- | ||
|
||
## | ||
|
||
You can add options to executable code like this | ||
|
||
```{python} | ||
import numpy as np | ||
import matplotlib.pyplot as plt | ||
x = np.linspace(0, 20, 100) | ||
plt.plot(x, np.sin(x)) | ||
plt.show() | ||
``` | ||
|
||
The `echo: false` option disables the printing of code (only output is displayed). |
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,17 @@ | ||
# this is the first test | ||
|
||
import numpy as np | ||
x = np.average([3, 4, 5]) | ||
print(x) | ||
|
||
# test add new lines | ||
|
||
|
||
def myfunction(a,b): | ||
return a+b | ||
|
||
#import numpy as np | ||
import matplotlib.pyplot as plt | ||
x = np.linspace(0, 20, 100) | ||
plt.plot(x, np.sin(x)) | ||
plt.show() |
Oops, something went wrong.