Skip to content

Commit

Permalink
new post
Browse files Browse the repository at this point in the history
  • Loading branch information
1dancook committed Jan 3, 2024
1 parent 00b7079 commit ba54fca
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions _posts/2024-01-04-quakeboxplot.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

```python
iquakes.shape[0]
```

```
247
```

A quick post. It's almost 8:30am, January 4th. There have been 247 quakes since the big one.

Let's see what the magnitude is like as a boxplot (for every hour):

```python
iquakes.boxplot(
by=["date", "hour"],
column=["mag"],
rot=90,
figsize=(20,20),
ylabel="Magnitude",
)

```

![ishikawa aftershocks boxplot]({{site.url}}/2024-01-04-quakesboximg.png)
Binary file added assets/2023-01-04-quakeboxplotimg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit ba54fca

Please sign in to comment.