Skip to content
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

Merging #41

Merged
merged 9 commits into from
Jan 10, 2024
Merged
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
Binary file added dataviz_fin/Sector-wise Approval Data.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 dataviz_fin/State-wise Approval Data.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions dataviz_fin/index.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Financing Visualizations</title>
<title>Grouped Bar Chart with D3.js</title>
<script src="https://d3js.org/d3.v6.min.js"></script>
</head>
Expand All @@ -10,6 +12,22 @@ <h2>Average Ticket Size of Approved Loans</h2>
<svg id="avg" width="960" height="500"></svg>
<h2>Count of Approved Loans</h2>
<svg id="count" width="960" height="550"></svg>

<img src="Sector-wise Approval Data.png" alt="Sector-wise 7a Approval Data by Count %">
<style>
img {
width: 1000px;
height: 750px;
}
</style>
<img src="State-wise Approval Data.png" alt="State-wise 7a Approval Data by Count %">
<style>
img {
width: 1000px;
height: 1000px;
}
</style>

</body>
<script src="script.js"></script>
<script src="script_count.js"></script>
Expand Down
1 change: 1 addition & 0 deletions images/U.S._Small_Business_Administration_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
12 changes: 9 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,15 @@
</head>
<body>
<h1>What was the SME funding allocation by SBA!!</h1>
<img src="intro.jpeg" alt="The Small Business Funding" />
<img src="images/U.S._Small_Business_Administration_logo.svg" alt="The Small Business Funding" />

<p>We are going to create a repository for funds allocation for:</p>

<ul>
<li>economists</li>
<li>researchers</li>
<li>funders</li>
<li>lobbyists</li>
</ul>

<p>working together to keep small businesses alive and accessible, so people in the US can sustain their businesses. We believe this information across an open platform is essential to ensuring transparency.</p>
Expand All @@ -30,7 +31,7 @@ <h1>What was the SME funding allocation by SBA!!</h1>
<p>Read the
<a href="team">
About Us
</a> to learn even more about us, our values and principles that guide the pursuit of our mission.
</a> to learn even more about us, our values,z and principles that guide the pursuit of our mission.
</p>

<br>
Expand All @@ -48,11 +49,16 @@ <h1>What was the SME funding allocation by SBA!!</h1>
</a> to see the funding patterns for small businesses.
</p>

<p> In which economic sectors are small businesses in each state?
<a href="state_sectors">
Click for more.
</a>

<p>Read the
<a href="BAviz">
Business Application Viz
</a> to see relevant statistics of the bussiness applications.
</p>

</body>
</html>
</html>
8 changes: 8 additions & 0 deletions styles/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
body {
font-family: Arial, sans-serif;
margin: 20px;
}

h1 {
text-align: center;
}