Skip to content

Commit

Permalink
root index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Jared Getzoff committed Jun 21, 2024
1 parent f94e332 commit 5ecc10b
Show file tree
Hide file tree
Showing 5 changed files with 14,539 additions and 3,269 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.ocm.key
*/.DS_Store
.DS_Store
8 changes: 7 additions & 1 deletion distributions.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,17 @@
fig, axes = plt.subplots(2, 1, figsize=(12, 8))

# Plot for Diesel particulate matter exposure
axes[0].hist(combined_data['Diesel particulate matter exposure'].dropna(), bins=50, color='purple', alpha=0.7)
n, bins, patches = axes[0].hist(combined_data['Diesel particulate matter exposure'].dropna(), bins=50, color='purple', alpha=0.7)
axes[0].set_title('Distribution of Diesel Particulate Matter Exposure')
axes[0].set_xlabel('Diesel Particulate Matter Exposure')
axes[0].set_ylabel('Frequency')

# Customize the y-axis ticks for Diesel Particulate Matter Exposure plot
max_frequency_diesel = max(n)
step_size_diesel = 3 # Set step size for Diesel Particulate Matter Exposure plot
yticks_diesel = [i for i in range(0, int(max_frequency_diesel) + 1, step_size_diesel)]
axes[0].set_yticks(yticks_diesel)

# Plot for ADT
axes[1].hist(traffic_data['ADT'].dropna(), bins=50, color='blue', alpha=0.7)
axes[1].set_title('Distribution of Average Daily Traffic (ADT)')
Expand Down
11,261 changes: 11,261 additions & 0 deletions index.html

Large diffs are not rendered by default.

Binary file modified out/distribution_plot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6,536 changes: 3,268 additions & 3,268 deletions out/pages/combined_data_map_with_traffic.html

Large diffs are not rendered by default.

0 comments on commit 5ecc10b

Please sign in to comment.