Skip to content

Commit

Permalink
update readme to match pull #28
Browse files Browse the repository at this point in the history
  • Loading branch information
hkershaw-brown committed Dec 19, 2024
1 parent 9d2f70b commit ad03e45
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ obs_seq.df.head()
Find the numeber of assimilated (used) observations vs. possible observations by type

```python
obsq.possible_vs_used(obs_seq.df)
obs_seq.possible_vs_used()
```

<table border="1" class="dataframe">
Expand Down Expand Up @@ -358,7 +358,7 @@ obsq.possible_vs_used(obs_seq.df)
* plot the rank histogram

```python
df_qc0 = obsq.select_by_dart_qc(obs_seq.df, 0)
df_qc0 = obs_seq.select_by_dart_qc(0)
plots.plot_rank_histogram(df_qc0)
```
![Rank Histogram](https://raw.githubusercontent.com/NCAR/pydartdiags/main/docs/images/rankhist.png)
Expand All @@ -374,7 +374,7 @@ plots.plot_rank_histogram(df_qc0)
hPalevels = [0.0, 100.0, 150.0, 200.0, 250.0, 300.0, 400.0, 500.0, 700, 850, 925, 1000]# float("inf")] # Pa?
plevels = [i * 100 for i in hPalevels]

df_qc0 = obsq.select_by_dart_qc(obs_seq.df, 0) # only qc 0
df_qc0 = obs_seq.select_by_dart_qc(0) # only qc 0
df_profile, figrmse, figbias = plots.plot_profile(df_qc0, plevels)
```

Expand Down

0 comments on commit ad03e45

Please sign in to comment.