Skip to content

Commit

Permalink
changing table to dataframe to reflect the variable name used in the …
Browse files Browse the repository at this point in the history
…function
  • Loading branch information
abostroem committed Dec 30, 2023
1 parent 7d0bf1c commit 9adf227
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion episodes/07-photo.md
Original file line number Diff line number Diff line change
@@ -187,7 +187,7 @@ We want to be able to make this plot again, with any selection of PanSTARRs phot
so this is a natural time to put it into a function that accepts as input
an Astropy `Table` or Pandas `DataFrame`, as long as
it has columns named `g_mean_psf_mag` and `i_mean_psf_mag`. To do this we will change
our variable name from `candidate_df` to the more generic `table`.
our variable name from `candidate_df` to the more generic `dataframe`.

```python
def plot_cmd(dataframe):

0 comments on commit 9adf227

Please sign in to comment.