From 2ba7fbf9572258ff1425539e930ff89c185fcf49 Mon Sep 17 00:00:00 2001 From: robelgeda Date: Tue, 8 Mar 2022 18:48:45 -0500 Subject: [PATCH] update docs with new background fitting --- docs/fitting.ipynb | 2 +- docs/multi_object.ipynb | 2 +- docs/photometry_and_petrosian.ipynb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/fitting.ipynb b/docs/fitting.ipynb index 6b4ea4b..ee0afaa 100644 --- a/docs/fitting.ipynb +++ b/docs/fitting.ipynb @@ -217,7 +217,7 @@ " # Options \n", " cutout_size=max(r_list)*2, # Cutout out size, set to double the max radius \n", " bkg_sub=True, # Subtract background \n", - " sigma=1, sigma_type='clip', # Fit a 2D plane to pixels within 1 sigma of the mean\n", + " sigma=3, sigma_type='clip', # Fit a 2D plane to pixels within 3 sigma of the mean\n", " plot=True, vmax=vmax, vmin=vmin, # Show plot with max and min defined above\n", ")\n", "plt.show()" diff --git a/docs/multi_object.ipynb b/docs/multi_object.ipynb index 4766c72..05d554b 100644 --- a/docs/multi_object.ipynb +++ b/docs/multi_object.ipynb @@ -171,7 +171,7 @@ " # Options \n", " cutout_size=max(r_list)*2, # Cutout out size, set to double the max radius \n", " bkg_sub=True, # Subtract background \n", - " sigma=1, sigma_type='clip', # Fit a 2D plane to pixels within 1 sigma of the mean\n", + " sigma=3, sigma_type='clip', # Fit a 2D plane to pixels within 3 sigma of the mean\n", " plot=False, vmax=vmax, vmin=vmin, # Show plot with max and min defined above\n", " )\n", " plt.show()\n", diff --git a/docs/photometry_and_petrosian.ipynb b/docs/photometry_and_petrosian.ipynb index 3762f54..0a8ee5d 100644 --- a/docs/photometry_and_petrosian.ipynb +++ b/docs/photometry_and_petrosian.ipynb @@ -475,7 +475,7 @@ " # Options \n", " cutout_size=max(r_list)*2, # Cutout out size, set to double the max radius \n", " bkg_sub=True, # Subtract background \n", - " sigma=1, sigma_type='clip', # Fit a 2D plane to pixels within 1 sigma of the mean\n", + " sigma=3, sigma_type='clip', # Fit a 2D plane to pixels within 3 sigma of the mean\n", " plot=True, vmax=vmax, vmin=vmin, # Show plot with max and min defined above\n", ")\n", "plt.show()"