generated from byui-cse/byuids-portfolio
-
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.
- Loading branch information
1 parent
020f814
commit d7e070b
Showing
13 changed files
with
276 additions
and
195 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
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 |
---|---|---|
|
@@ -9,3 +9,4 @@ | |
/Templates/DS350_Template.qmd | ||
*.html | ||
/site_libs | ||
/docs |
Binary file not shown.
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
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 |
---|---|---|
@@ -1,28 +1 @@ | ||
--- | ||
title: "Client Report - [Insert Project Title]" | ||
subtitle: "Course DS 250" | ||
author: "[STUDENT NAME]" | ||
format: | ||
html: | ||
self-contained: true | ||
page-layout: full | ||
title-block-banner: true | ||
toc: true | ||
toc-depth: 3 | ||
toc-location: body | ||
number-sections: false | ||
html-math-method: katex | ||
code-fold: true | ||
code-summary: "Show the code" | ||
code-overflow: wrap | ||
code-copy: hover | ||
code-tools: | ||
source: false | ||
toggle: true | ||
caption: See code | ||
execute: | ||
warning: false | ||
|
||
--- | ||
|
||
### Paste in a template | ||
### Paste in a template |
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 |
---|---|---|
@@ -1,28 +1 @@ | ||
--- | ||
title: "Client Report - [Insert Project Title]" | ||
subtitle: "Course DS 250" | ||
author: "[STUDENT NAME]" | ||
format: | ||
html: | ||
self-contained: true | ||
page-layout: full | ||
title-block-banner: true | ||
toc: true | ||
toc-depth: 3 | ||
toc-location: body | ||
number-sections: false | ||
html-math-method: katex | ||
code-fold: true | ||
code-summary: "Show the code" | ||
code-overflow: wrap | ||
code-copy: hover | ||
code-tools: | ||
source: false | ||
toggle: true | ||
caption: See code | ||
execute: | ||
warning: false | ||
|
||
--- | ||
|
||
### Paste in a template | ||
### Paste in a template |
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,22 @@ | ||
#%% | ||
import pandas as pd | ||
import numpy as np | ||
import sqlite3 | ||
|
||
# %% | ||
# careful to list your path to the file or save it in the same place as your .qmd or .py file | ||
sqlite_file = 'lahmansbaseballdb.sqlite' | ||
con = sqlite3.connect(sqlite_file) | ||
|
||
q = 'SELECT * FROM allstarfull LIMIT 5' | ||
results = pd.read_sql_query(q,con) | ||
|
||
results | ||
#%% | ||
q = ''' | ||
SELECT * | ||
FROM sqlite_master | ||
WHERE type='table' | ||
''' | ||
table = pd.read_sql_query(q,con) | ||
table.filter(['name']) |
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 |
---|---|---|
@@ -1,28 +1 @@ | ||
--- | ||
title: "Client Report - [Insert Project Title]" | ||
subtitle: "Course DS 250" | ||
author: "[STUDENT NAME]" | ||
format: | ||
html: | ||
self-contained: true | ||
page-layout: full | ||
title-block-banner: true | ||
toc: true | ||
toc-depth: 3 | ||
toc-location: body | ||
number-sections: false | ||
html-math-method: katex | ||
code-fold: true | ||
code-summary: "Show the code" | ||
code-overflow: wrap | ||
code-copy: hover | ||
code-tools: | ||
source: false | ||
toggle: true | ||
caption: See code | ||
execute: | ||
warning: false | ||
|
||
--- | ||
|
||
### Paste in a template | ||
### Paste in a template |
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 |
---|---|---|
@@ -1,28 +1 @@ | ||
--- | ||
title: "Client Report - [Insert Project Title]" | ||
subtitle: "Course DS 250" | ||
author: "[STUDENT NAME]" | ||
format: | ||
html: | ||
self-contained: true | ||
page-layout: full | ||
title-block-banner: true | ||
toc: true | ||
toc-depth: 3 | ||
toc-location: body | ||
number-sections: false | ||
html-math-method: katex | ||
code-fold: true | ||
code-summary: "Show the code" | ||
code-overflow: wrap | ||
code-copy: hover | ||
code-tools: | ||
source: false | ||
toggle: true | ||
caption: See code | ||
execute: | ||
warning: false | ||
|
||
--- | ||
|
||
### Paste in a template | ||
### Paste in a template |
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 |
---|---|---|
@@ -1,28 +1 @@ | ||
--- | ||
title: "Client Report - [Insert Project Title]" | ||
subtitle: "Course DS 250" | ||
author: "[STUDENT NAME]" | ||
format: | ||
html: | ||
self-contained: true | ||
page-layout: full | ||
title-block-banner: true | ||
toc: true | ||
toc-depth: 3 | ||
toc-location: body | ||
number-sections: false | ||
html-math-method: katex | ||
code-fold: true | ||
code-summary: "Show the code" | ||
code-overflow: wrap | ||
code-copy: hover | ||
code-tools: | ||
source: false | ||
toggle: true | ||
caption: See code | ||
execute: | ||
warning: false | ||
|
||
--- | ||
|
||
### Paste in a template | ||
### Paste in a template |
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 |
---|---|---|
@@ -1,28 +1 @@ | ||
--- | ||
title: "Client Report - [Insert Project Title]" | ||
subtitle: "Course DS 250" | ||
author: "[STUDENT NAME]" | ||
format: | ||
html: | ||
self-contained: true | ||
page-layout: full | ||
title-block-banner: true | ||
toc: true | ||
toc-depth: 3 | ||
toc-location: body | ||
number-sections: false | ||
html-math-method: katex | ||
code-fold: true | ||
code-summary: "Show the code" | ||
code-overflow: wrap | ||
code-copy: hover | ||
code-tools: | ||
source: false | ||
toggle: true | ||
caption: See code | ||
execute: | ||
warning: false | ||
|
||
--- | ||
|
||
### Paste in a template | ||
### Here is a link to my GitHub portfolio: [GitHub Portfolio]('link to portfolio goes here') |
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,50 @@ | ||
--- | ||
title: "Coding Challenge" | ||
subtitle: "Course DS 250" | ||
author: "Student Name" | ||
format: | ||
html: | ||
self-contained: true | ||
page-layout: full | ||
title-block-banner: true | ||
toc: true | ||
toc-depth: 3 | ||
toc-location: body | ||
number-sections: false | ||
html-math-method: katex | ||
code-fold: true | ||
code-summary: "Show the code" | ||
code-overflow: wrap | ||
code-copy: hover | ||
code-tools: | ||
source: false | ||
toggle: true | ||
caption: See code | ||
|
||
--- | ||
|
||
```{python} | ||
# Read in libraries | ||
import pandas as pd | ||
import numpy as np | ||
from lets_plot import * | ||
``` | ||
|
||
```{python} | ||
# Read in the names data | ||
url = "https://github.com/byuidatascience/data4names/raw/master/data-raw/names_year/names_year.csv" | ||
names = pd.read_csv(url) | ||
``` | ||
|
||
## Question #: | ||
|
||
### [Replace with the text from question #] | ||
|
||
```{python} | ||
# Question # Code | ||
``` | ||
|
||
When done with a question, render it to a `.html` file and upload it for the question. Either re-downolad this template or file -> save as -> a new file name and then replace the text in the question with the new question text. |
Oops, something went wrong.