Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
1Ramirez7 committed May 23, 2024
2 parents 76af33b + 8e849ff commit 85a9d1f
Show file tree
Hide file tree
Showing 20 changed files with 58 additions and 42 deletions.
Binary file added Images/SS/10_FA_definition.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Images/SS/11_FA_Q_VS_Y.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Images/SS/12_FA_save.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Images/SS/13_FA_15156.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Images/SS/14_FA_adding_current.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Images/SS/15_FA.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Images/SS/16_FA_def_calculations.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Images/SS/1_searching equity.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Images/SS/2_searching equity 2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Images/SS/3_pop up.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Images/SS/4_AMZN_DES.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Images/SS/5_FA.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Images/SS/6_FA screen.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Images/SS/7_FA_Custom.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Images/SS/8_FA_adding.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Images/SS/9_FA_RightClick.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion _quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ website:
right:
- text: "Home"
file: index.qmd
- text: "DS250 Projects"
- text: "Bloomberg Templates"
file: projects.qmd
- text: "My Resume"
file: resume.qmd
Expand Down
84 changes: 46 additions & 38 deletions competition.qmd
Original file line number Diff line number Diff line change
@@ -1,41 +1,49 @@
---
title: "about me"
subtitle: "my data science portfolio"
# use quarto markdown to
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Calculator</title>
<style>
/* Add some basic styling */
body {
font-family: Arial, sans-serif;
text-align: center;
}
</style>
</head>
<body>
<h1>Simple Calculator</h1>
<div>
<label for="num1">Enter first number:</label>
<input type="number" id="num1">
</div>
<div>
<label for="num2">Enter second number:</label>
<input type="number" id="num2">
</div>
<button onclick="calculate()">Calculate</button>
<div id="result"></div>

# Title 1 Header
## Title 2 Header
<script>
function calculate() {
// Get the input values
var num1 = parseFloat(document.getElementById('num1').value);
var num2 = parseFloat(document.getElementById('num2').value);

// Perform calculations
var sum = num1 + num2;
var difference = num1 - num2;
var product = num1 * num2;
var quotient = num1 / num2;


#' ---
#' title: Palmer Penguins
#' author: Norah Jones
#' date: 3/12/23
#' format: html
#' ---

library(palmerpenguins)

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

#| label: fig-bill-sizes
#| fig-cap: Bill Sizes by Species
#| warning: false
library(ggplot2)
ggplot(data = penguins,
aes(x = bill_length_mm,
y = bill_depth_mm,
group = species)) +
geom_point(aes(color = species,
shape = species),
size = 3,
alpha = 0.8) +
labs(title = "Penguin bill dimensions",
subtitle = "Bill length and depth for Adelie, Chinstrap and Gentoo Penguins at Palmer Station LTER",
x = "Bill length (mm)",
y = "Bill depth (mm)",
color = "Penguin species",
shape = "Penguin species")
// Display the results
var resultDiv = document.getElementById('result');
resultDiv.innerHTML = '<p>Sum: ' + sum + '</p>' +
'<p>Difference: ' + difference + '</p>' +
'<p>Product: ' + product + '</p>' +
'<p>Quotient: ' + quotient + '</p>';
}
</script>
</body>
</html>
13 changes: 11 additions & 2 deletions full_stack.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,17 @@ subtitle: "my data science portfolio"
# use quarto markdown to
---

# Title 1 Header
## Title 2 Header
# Eduardo I Ramirez

I'm obtaining a Bachelor of Science in Financial Economics with a minor in Data Science at Brigham Young University-Idaho. The goal of this portfolio is to display a few projects I have made that show my work and capabilities.


For any inquiries: Eduardo.ER.Ramirez@gmail.com








1 change: 0 additions & 1 deletion resume.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ layout: cv
title: Eduardo I. Ramirez's CV
---

# Eduardo I. Ramirez
Financial Economist, Data Scientist, Business Analyst

<div id="webaddress">
Expand Down

0 comments on commit 85a9d1f

Please sign in to comment.