Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
On branch main
Changes to be committed:
	modified:   Templates/DS250_Template.qmd
	modified:   Templates/DS350_Template.qmd
	modified:   _quarto.yml
	modified:   cleansing.qmd
	modified:   competition.qmd
	modified:   exploration.qmd
	modified:   full_stack.qmd
	modified:   index.qmd
	modified:   ml.qmd
	modified:   resume.qmd
	modified:   story_telling.qmd
  • Loading branch information
1Ramirez7 committed Mar 30, 2024
1 parent efea14a commit 9258068
Show file tree
Hide file tree
Showing 11 changed files with 65 additions and 236 deletions.
170 changes: 1 addition & 169 deletions Templates/DS250_Template.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -24,172 +24,4 @@ execute:
warning: false

---

### Uncomment the entire section to use this template

<!--
```{python}
#| label: libraries
#| include: false
import pandas as pd
import numpy as np
import plotly.express as px
```
## Elevator pitch
_paste your elevator pitch here_
_A SHORT (4-5 SENTENCES) PARAGRAPH THAT `DESCRIBES KEY INSIGHTS` TAKEN FROM METRICS IN THE PROJECT RESULTS THINK TOP OR MOST IMPORTANT RESULTS._
```{python}
#| label: project data
#| code-summary: Read and format project data
# Include and execute your code here
df = pd.read_csv("https://github.com/byuidatascience/data4names/raw/master/data-raw/names_year/names_year.csv")
```
__Highlight the Questions and Tasks__
## QUESTION|TASK 1
__COPY PASTE QUESTION|TASK 1 FROM THE PROJECT HERE__
_type your results and analysis here_
```{python}
#| label: Q1
#| code-summary: Read and format data
# Include and execute your code here
```
_include figures in chunks and discuss your findings in the figure._
```{python}
#| label: Q1 chart
#| code-summary: plot example
#| fig-cap: "My useless chart"
#| fig-align: center
# Include and execute your code here
chart = px.bar(df.head(200),
x="name",
y="AK"
)
chart.show()
```
```{python}
#| label: Q1 table
#| code-summary: table example
#| tbl-cap: "Not much of a table"
#| tbl-cap-location: top
# Include and execute your code here
mydat = df.head(1000)\
.groupby('year')\
.sum()\
.reset_index()\
.tail(10)\
.filter(["year", "AK","AR"])
display(mydat)
```
## QUESTION|TASK 2
__COPY PASTE QUESTION|TASK 2 FROM THE PROJECT HERE__
_type your results and analysis here_
```{python}
#| label: Q2
#| code-summary: Read and format data
# Include and execute your code here
```
_include figures in chunks and discuss your findings in the figure._
```{python}
#| label: Q2 chart
#| code-summary: plot example
#| fig-cap: "My useless chart"
#| fig-align: center
# Include and execute your code here
chart = px.bar(df.head(200),
x="name",
y="AK"
)
chart.show()
```
```{python}
#| label: Q2 table
#| code-summary: table example
#| tbl-cap: "Not much of a table"
#| tbl-cap-location: top
# Include and execute your code here
mydat = df.head(1000)\
.groupby('year')\
.sum()\
.reset_index()\
.tail(10)\
.filter(["year", "AK","AR"])
display(mydat)
```
## QUESTION|TASK 3
__COPY PASTE QUESTION|TASK 3 FROM THE PROJECT HERE__
_type your results and analysis here_
```{python}
#| label: Q3
#| code-summary: Read and format data
# Include and execute your code here
```
_include figures in chunks and discuss your findings in the figure._
```{python}
#| label: Q3 chart
#| code-summary: plot example
#| fig-cap: "My useless chart"
#| fig-align: center
# Include and execute your code here
chart = px.bar(df.head(200),
x="name",
y="AK"
)
chart.show()
```
```{python}
#| label: Q3 table
#| code-summary: table example
#| tbl-cap: "Not much of a table"
#| tbl-cap-location: top
# Include and execute your code here
mydat = df.head(1000)\
.groupby('year')\
.sum()\
.reset_index()\
.tail(10)\
.filter(["year", "AK","AR"])
display(mydat)
``` -->
testing
3 changes: 2 additions & 1 deletion Templates/DS350_Template.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@ execute:

---

### TODO: Update with template from Paul

testing
11 changes: 4 additions & 7 deletions _quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ project:
type: website

website:
title: "Your_Name Data Science Portfolio"
title: "Eduardo I Ramirez Data Science Portfolio"
favicon: Images/favicon.png
back-to-top-navigation: true
repo-url: https://github.com/your_url
repo-url: https://1ramirez7.github.io/Portfolio_
#repo-actions: [issue] #if you want to allow others to report issues on your site uncomment this line

page-footer:
border: true
left: "Your_Name 2023©"
left: "Eduardo I Ramirez 2024©"
right:
- icon: linkedin
href: Your_LinkedIn_URL
href: linkedin.com/in/eduardo-ramirez-lds

navbar:
background: primary
Expand Down Expand Up @@ -73,6 +73,3 @@ format:
#dark: [cosmo, theme-dark.scss]
css: styles.css
toc: true



4 changes: 2 additions & 2 deletions cleansing.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ subtitle: "my data science portfolio"
# Title 1 Header
## Title 2 Header

[MarkDown Basics](https://quarto.org/docs/authoring/markdown-basics.html#links-images)


# %% [markdown]
# ---
Expand All @@ -25,7 +25,7 @@ df = pd.read_csv("palmer-penguins.csv")
"""
## Exploring the data

See @fig-bill-sizes for an exploration of bill sizes by species.
See for an exploration of bill sizes by species.
"""

# %%
Expand Down
4 changes: 2 additions & 2 deletions competition.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ subtitle: "my data science portfolio"
# Title 1 Header
## Title 2 Header

[MarkDown Basics](https://quarto.org/docs/authoring/markdown-basics.html#links-images)


#' ---
#' title: Palmer Penguins
Expand All @@ -19,7 +19,7 @@ subtitle: "my data science portfolio"
library(palmerpenguins)

#' ## Exploring the data
#' See @fig-bill-sizes for an exploration of bill sizes by species.
#' See for an exploration of bill sizes by species.

#| label: fig-bill-sizes
#| fig-cap: Bill Sizes by Species
Expand Down
2 changes: 1 addition & 1 deletion exploration.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ subtitle: "my data science portfolio"
# Title 1 Header
## Title 2 Header

[MarkDown Basics](https://quarto.org/docs/authoring/markdown-basics.html#links-images)


2 changes: 1 addition & 1 deletion full_stack.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ subtitle: "my data science portfolio"
# Title 1 Header
## Title 2 Header

[MarkDown Basics](https://quarto.org/docs/authoring/markdown-basics.html#links-images)


1 change: 0 additions & 1 deletion index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@ subtitle: "my data science portfolio"
# Title 1 Header
## Title 2 Header

[MarkDown Basics](https://quarto.org/docs/authoring/markdown-basics.html#links-images)

1 change: 0 additions & 1 deletion ml.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@ subtitle: "my data science portfolio"
# Title 1 Header
## Title 2 Header

[MarkDown Basics](https://quarto.org/docs/authoring/markdown-basics.html#links-images)

Loading

0 comments on commit 9258068

Please sign in to comment.