In [1]:
#for comparing the full-depth and single-depth goods classifications

%pylab inline
from astropy.io import fits as pyfits
from datetime import datetime
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.gridspec as gridspec
from astropy.io import fits
from astropy.table import Table,Column
import scipy.stats.distributions as dist

import os
import warnings
import requests

from PIL import Image
import urllib, cStringIO

mpl.rcParams['text.usetex']=True
mpl.rcParams['axes.linewidth'] = 3

warnings.filterwarnings('ignore', category=RuntimeWarning, append=True)
warnings.filterwarnings('ignore', category=UserWarning, append=True);


Populating the interactive namespace from numpy and matplotlib

In [6]:
gdata=Table.read('goods_shallow_1_full_2_9_2016.fits')

In [7]:
#_1 refers to shallow depth and _2 refers to full depth:
print 'shallow: column _1 = %s, full: column_2 = %s' %(gdata['imaging_1'][0],gdata['imaging_2'][0])


shallow: column _1 = GOODS-N          , full: column_2 = GOODS-N-FULLDEPTH

In [18]:
p_features_shallow='t01_smooth_or_features_a02_features_or_disk_best_fraction_1'
p_features_full='t01_smooth_or_features_a02_features_or_disk_best_fraction_2'

In [87]:
def get_image_from_url(url):

    file = cStringIO.StringIO(urllib.urlopen(url).read())
    img = Image.open(file)
    return img

def df(data):
    df = np.nanmean(data[p_features_full]-data[p_features_shallow])
    return round(df,2)

def dz(data):
    z_in_range = (data['Z_BEST_2'] > 0.0) & (data['Z_BEST_2'] < 2.0)
    dz = np.nanmean(data[z_in_range]['Z_BEST_2'])
    return round(dz,2)

In [10]:
def compare_shallow_and_full_images(gal):
    f=plt.figure(figsize=(12,8))
    gs=gridspec.GridSpec(1,2)
    fs = 30
    #left: show shallow image
    ax1=plt.subplot(gs[0,0])
    plt.imshow(get_image_from_url(gal['shallow_url']))
    plt.tick_params(labelbottom='off',labelleft='off')

#        ax1.annotate('z: %s\n$\mu: %s$'%(round(gal['Z_BEST_1'],2),round(gal['MU_HI_1'],2)),fontsize=fs,xy=(0,1),
#            xycoords='axes fraction',verticalalignment='top',color='white')
#        ax1.annotate('%s'%gal['OBJNO_1'],fontsize=fs,xy=(1,1),
#            xycoords='axes fraction',verticalalignment='top',horizontalalignment='right',color='white')
#        ax1.annotate('$\mathrm{p_{features}: %s}$\n$\mathrm{p_{features,best}: %s}$'%(round(gal[p_features_shallow_weighted],2),round(gal[p_features_shallow_best],2)),fontsize=fs,xy=(0,0),
#            xycoords='axes fraction',color='white')

    plt.title('shallow depth',fontsize=25)
    #right: full image
    ax2=plt.subplot(gs[0,1])
    plt.imshow(get_image_from_url(gal['full_url']))
    plt.tick_params(labelbottom='off',labelleft='off')
 
#        ax2.annotate('z: %s\n$\mu: %s$'%(round(gal['Z_BEST_2'],2),round(gal['MU_HI_2'],2)),fontsize=fs,xy=(0,1),
#            xycoords='axes fraction',verticalalignment='top',color='white')
#    ax2.annotate('%s'%gal['OBJNO_2'],fontsize=fs,xy=(1,1),
#            xycoords='axes fraction',verticalalignment='top',horizontalalignment='right',color='white')
#        ax2.annotate('$\mathrm{p_{features}: %s}$\n$\mathrm{p_{features,best}: %s}$'%(round(gal[p_features_full_weighted],2),round(gal[p_features_full_best],2)),fontsize=fs,xy=(0,0),
#            xycoords='axes fraction',color='white')

    plt.title('full depth',fontsize=25)

In [11]:
compare_shallow_and_full_images(gdata[2261])



In [19]:
features_hist,xedges,yedges=np.histogram2d(gdata[p_features_shallow],gdata[p_features_full],range=((0,1),(0,1)))
extent=[xedges[0],xedges[-1],yedges[0],yedges[-1]]


mpl.rcParams['xtick.labelsize'] = 20
mpl.rcParams['ytick.labelsize'] = 20 

f=plt.figure(figsize=(10,7))
cmap=cm.CMRmap

plt.imshow(features_hist.T,origin='lower',extent=extent,interpolation='nearest',cmap=cmap)
plt.xlabel('$\mathrm{p_{features}~shallow~depth}$',fontsize=30)
plt.ylabel(r'$\mathrm{p_{features}~full~depth}$',fontsize=30)
f.text(.86,.5,'$\mathrm{Count}$',fontsize=30,rotation=270)
plt.colorbar()

plt.savefig('../../writeup/figures/full_shallow_p_plot.pdf')



In [5]:
## Figures for appendix

Define 'clean featured' sample as $p_{features}$ > 0.8, 'clean smooth' sample as $p_{features}$ < 0.2, and intermediate as anything in between.


In [20]:
disk_cut = 0.8
smooth_cut = 0.2

In [21]:
smooth_to_smooth = (gdata[p_features_shallow]<smooth_cut) & (gdata[p_features_full]<smooth_cut)
smooth_to_int = (gdata[p_features_shallow]<smooth_cut) & (gdata[p_features_full]>smooth_cut) & (gdata[p_features_full] < disk_cut)
smooth_to_featured = (gdata[p_features_shallow]<smooth_cut) & (gdata[p_features_full]>disk_cut)

int_to_smooth = (gdata[p_features_shallow]>smooth_cut) & (gdata[p_features_shallow] < disk_cut) & (gdata[p_features_full]<smooth_cut)
int_to_int = (gdata[p_features_shallow]>smooth_cut) & (gdata[p_features_shallow] < disk_cut) & (gdata[p_features_full]>smooth_cut) & (gdata[p_features_full] < disk_cut)
int_to_featured = (gdata[p_features_shallow]>smooth_cut) & (gdata[p_features_shallow] < disk_cut) & (gdata[p_features_full]>disk_cut)

featured_to_smooth = (gdata[p_features_shallow]>disk_cut) & (gdata[p_features_full]<smooth_cut)
featured_to_int =  (gdata[p_features_shallow]>disk_cut) & (gdata[p_features_full]>smooth_cut) & (gdata[p_features_full] < disk_cut)
featured_to_featured = (gdata[p_features_shallow]>disk_cut) & (gdata[p_features_full]>disk_cut)

In [22]:
def plot_shallow_corrections(data,int_list,i,ax):
    gal = data[int_list[i]]
    try: 
        plt.imshow(get_image_from_url(gal['shallow_url']))
        plt.tick_params(labelbottom='off',labelleft='off')
        ax.annotate('$\mathrm{f_{features}: %s}$'%round(gal[p_features_shallow],2),fontsize=35,xy=(0.02,.02),
            xycoords='axes fraction',color='white')
    except IOError:
        pass

def plot_full_corrections(data,int_list,i,ax):
    gal = data[int_list[i]]
    try:
        plt.imshow(get_image_from_url(gal['full_url']))
        plt.tick_params(labelbottom='off',labelleft='off')
        ax.annotate('$\mathrm{f_{features}: %s}$'%round(gal[p_features_full],2),fontsize=35,xy=(0.02,.02),
            xycoords='axes fraction',color='white')
    except IOError:
        pass
    
def int_list(table_data):
    ints = np.linspace(0,len(table_data),len(table_data)+1)
    ints = [int(s) for s in ints]
    random.shuffle(ints)
    return ints

In [23]:
def plot_goods_comparisons(type1_to_type2,type1,type2):
    gs=gridspec.GridSpec(2,5)
    gs.update(wspace=0.01)
    gs.update(hspace=0.05)
 

    s_s = gdata[type1_to_type2]
    s_s_ints = int_list(s_s)



    ls = 25

    f=plt.figure(figsize=(25,10))
    for i in range(0,5):
        ax_s = plt.subplot(gs[0,i])
        try:
            plot_shallow_corrections(s_s,s_s_ints,i,ax_s)
        except IndexError:
            pass
        if i==0:
            plt.ylabel('shallow~depth~image',fontsize=ls)
        if i==4:
            ax_s.yaxis.set_label_position("right")
            plt.ylabel(type1,fontsize=ls,rotation=270,labelpad=25)

        ax_f = plt.subplot(gs[1,i])
        try:
            plot_full_corrections(s_s,s_s_ints,i,ax_f)
        except IndexError:
            pass
        if i==0:
            plt.ylabel('full~depth~image',fontsize=ls)
        if i==4:
            ax_f.yaxis.set_label_position("right")
            plt.ylabel(type2,fontsize=ls,rotation=270,labelpad=25)

In [25]:
plot_goods_comparisons(smooth_to_smooth,'smooth','smooth')
plt.savefig('../../writeup/figures/smooth_to_smooth.pdf')



In [27]:
plot_goods_comparisons(smooth_to_int,'smooth','intermediate')
plt.savefig('../../writeup/figures/smooth_to_intermediate.pdf')



In [29]:
plot_goods_comparisons(smooth_to_featured,'smooth','featured')
plt.savefig('../../writeup/figures/smooth_to_featured.pdf')



In [30]:
plot_goods_comparisons(int_to_smooth,'intermediate','smooth')
plt.savefig('../../writeup/figures/intermediate_to_smooth.pdf')



In [31]:
plot_goods_comparisons(int_to_int,'intermediate','intermediate')
plt.savefig('../../writeup/figures/intermediate_to_intermediate.pdf')



In [32]:
plot_goods_comparisons(int_to_featured,'intermediate','featured')
plt.savefig('../../writeup/figures/intermediate_to_featured.pdf')



In [33]:
plot_goods_comparisons(featured_to_smooth,'featured','smooth')
plt.savefig('../../writeup/figures/featured_to_smooth.pdf')



In [34]:
plot_goods_comparisons(featured_to_int,'featured','intermediate')
plt.savefig('../../writeup/figures/featured_to_intermediate.pdf')



In [35]:
plot_goods_comparisons(featured_to_featured,'featured','featured')
plt.savefig('../../writeup/figures/featured_to_featured.pdf')


Calculate how many galaxies changed (or did not change) morphology


In [96]:
cats = [smooth_to_smooth,smooth_to_int,smooth_to_featured,int_to_smooth,int_to_int,int_to_featured,featured_to_smooth,featured_to_int,featured_to_featured]
strs = ['smooth_to_smooth','smooth_to_int','smooth_to_featured','int_to_smooth','int_to_int','int_to_featured','featured_to_smooth','featured_to_int','featured_to_featured']

for i,c in enumerate(cats):
    print '%s: %s, %s %%, average change in f = %s, average z = %s \n' %(strs[i],len(gdata[c]), round(len(gdata[c])/float(len(gdata)),2),df(gdata[c]),dz(gdata[c]))


smooth_to_smooth: 708, 0.16 %, average change in f = 0.0, average z = 0.72 

smooth_to_int: 346, 0.08 %, average change in f = 0.21, average z = 0.7 

smooth_to_featured: 6, 0.0 %, average change in f = 0.8, average z = 0.45 

int_to_smooth: 266, 0.06 %, average change in f = -0.24, average z = 0.66 

int_to_int: 2363, 0.53 %, average change in f = 0.0, average z = 0.75 

int_to_featured: 121, 0.03 %, average change in f = 0.17, average z = 0.82 

featured_to_smooth: 3, 0.0 %, average change in f = -0.73, average z = 0.71 

featured_to_int: 370, 0.08 %, average change in f = -0.15, average z = 0.69 

featured_to_featured: 277, 0.06 %, average change in f = -0.05, average z = 0.71 


In [98]:
print 'total change in f = %s, deviation = %s' %(round(nanmean(gdata[p_features_full]-gdata[p_features_shallow]),2),round(np.std(gdata[p_features_full]-gdata[p_features_shallow]),2))


total change in f = -0.01, deviation = 0.18

In [100]:
print 'fraction of galaxies with no morphological change = %s' %(float((len(gdata[smooth_to_smooth]) + len(gdata[int_to_int]) + len(gdata[featured_to_featured])))/len(gdata))


fraction of galaxies with no morphological change = 0.75067264574

In [81]:
print 'fraction of galaxies with large morphological change = %s' %(float((len(gdata[smooth_to_featured]) + len(gdata[int_]) + len(gdata[featured_to_featured])))/len(gdata))


Out[81]:
<Table masked=True length=327>
zooniverse_id_1survey_id_1Table_1RA_1DEC_1imaging_1Z_BEST_1GZ_MU_I_1correction_type_1total_count_1total_weight_1t01_smooth_or_features_a01_smooth_fraction_1t01_smooth_or_features_a01_smooth_weighted_fraction_1t01_smooth_or_features_a01_smooth_debiased_fraction_1t01_smooth_or_features_a01_smooth_lower_limit_1t01_smooth_or_features_a01_smooth_upper_limit_1t01_smooth_or_features_a01_smooth_best_fraction_1t01_smooth_or_features_a01_smooth_flag_1t01_smooth_or_features_a02_features_or_disk_fraction_1t01_smooth_or_features_a02_features_or_disk_weighted_fraction_1t01_smooth_or_features_a02_features_or_disk_debiased_fraction_1t01_smooth_or_features_a02_features_or_disk_lower_limit_1t01_smooth_or_features_a02_features_or_disk_upper_limit_1t01_smooth_or_features_a02_features_or_disk_best_fraction_1t01_smooth_or_features_a02_features_or_disk_flag_1t01_smooth_or_features_a03_star_or_artifact_fraction_1t01_smooth_or_features_a03_star_or_artifact_weighted_fraction_1t01_smooth_or_features_a03_star_or_artifact_flag_1t01_smooth_or_features_total_count_1t01_smooth_or_features_total_weight_1t02_edgeon_a01_yes_fraction_1t02_edgeon_a01_yes_weighted_fraction_1t02_edgeon_a02_no_fraction_1t02_edgeon_a02_no_weighted_fraction_1t02_edgeon_total_count_1t02_edgeon_total_weight_1t03_bar_a01_bar_fraction_1t03_bar_a01_bar_weighted_fraction_1t03_bar_a02_no_bar_fraction_1t03_bar_a02_no_bar_weighted_fraction_1t03_bar_total_count_1t03_bar_total_weight_1t04_spiral_a01_spiral_fraction_1t04_spiral_a01_spiral_weighted_fraction_1t04_spiral_a02_no_spiral_fraction_1t04_spiral_a02_no_spiral_weighted_fraction_1t04_spiral_total_count_1t04_spiral_total_weight_1t05_bulge_prominence_a01_no_bulge_fraction_1t05_bulge_prominence_a01_no_bulge_weighted_fraction_1t05_bulge_prominence_a02_just_noticeable_fraction_1t05_bulge_prominence_a02_just_noticeable_weighted_fraction_1t05_bulge_prominence_a03_obvious_fraction_1t05_bulge_prominence_a03_obvious_weighted_fraction_1t05_bulge_prominence_a04_dominant_fraction_1t05_bulge_prominence_a04_dominant_weighted_fraction_1t05_bulge_prominence_total_count_1t05_bulge_prominence_total_weight_1t06_odd_a01_yes_fraction_1t06_odd_a01_yes_weighted_fraction_1t06_odd_a02_no_fraction_1t06_odd_a02_no_weighted_fraction_1t06_odd_total_count_1t06_odd_total_weight_1t07_rounded_a01_completely_round_fraction_1t07_rounded_a01_completely_round_weighted_fraction_1t07_rounded_a02_in_between_fraction_1t07_rounded_a02_in_between_weighted_fraction_1t07_rounded_a03_cigar_shaped_fraction_1t07_rounded_a03_cigar_shaped_weighted_fraction_1t07_rounded_total_count_1t07_rounded_total_weight_1t08_odd_feature_a01_ring_fraction_1t08_odd_feature_a01_ring_weighted_fraction_1t08_odd_feature_a02_lens_or_arc_fraction_1t08_odd_feature_a02_lens_or_arc_weighted_fraction_1t08_odd_feature_a03_disturbed_fraction_1t08_odd_feature_a03_disturbed_weighted_fraction_1t08_odd_feature_a04_irregular_fraction_1t08_odd_feature_a04_irregular_weighted_fraction_1t08_odd_feature_a05_other_fraction_1t08_odd_feature_a05_other_weighted_fraction_1t08_odd_feature_a06_merger_fraction_1t08_odd_feature_a06_merger_weighted_fraction_1t08_odd_feature_a07_dust_lane_fraction_1t08_odd_feature_a07_dust_lane_weighted_fraction_1t08_odd_feature_total_count_1t08_odd_feature_total_weight_1t09_bulge_shape_a01_rounded_fraction_1t09_bulge_shape_a01_rounded_weighted_fraction_1t09_bulge_shape_a02_boxy_fraction_1t09_bulge_shape_a02_boxy_weighted_fraction_1t09_bulge_shape_a03_no_bulge_fraction_1t09_bulge_shape_a03_no_bulge_weighted_fraction_1t09_bulge_shape_total_count_1t09_bulge_shape_total_weight_1t10_arms_winding_a01_tight_fraction_1t10_arms_winding_a01_tight_weighted_fraction_1t10_arms_winding_a02_medium_fraction_1t10_arms_winding_a02_medium_weighted_fraction_1t10_arms_winding_a03_loose_fraction_1t10_arms_winding_a03_loose_weighted_fraction_1t10_arms_winding_total_count_1t10_arms_winding_total_weight_1t11_arms_number_a01_1_fraction_1t11_arms_number_a01_1_weighted_fraction_1t11_arms_number_a02_2_fraction_1t11_arms_number_a02_2_weighted_fraction_1t11_arms_number_a03_3_fraction_1t11_arms_number_a03_3_weighted_fraction_1t11_arms_number_a04_4_fraction_1t11_arms_number_a04_4_weighted_fraction_1t11_arms_number_a05_more_than_4_fraction_1t11_arms_number_a05_more_than_4_weighted_fraction_1t11_arms_number_a06_cant_tell_fraction_1t11_arms_number_a06_cant_tell_weighted_fraction_1t11_arms_number_total_count_1t11_arms_number_total_weight_1t12_clumpy_a01_yes_fraction_1t12_clumpy_a01_yes_weighted_fraction_1t12_clumpy_a02_no_fraction_1t12_clumpy_a02_no_weighted_fraction_1t12_clumpy_total_count_1t12_clumpy_total_weight_1t13_bright_clump_a01_yes_fraction_1t13_bright_clump_a01_yes_weighted_fraction_1t13_bright_clump_a02_no_fraction_1t13_bright_clump_a02_no_weighted_fraction_1t13_bright_clump_total_count_1t13_bright_clump_total_weight_1t14_bright_clump_central_a01_yes_fraction_1t14_bright_clump_central_a01_yes_weighted_fraction_1t14_bright_clump_central_a02_no_fraction_1t14_bright_clump_central_a02_no_weighted_fraction_1t14_bright_clump_central_total_count_1t14_bright_clump_central_total_weight_1t15_clumps_arrangement_a01_line_fraction_1t15_clumps_arrangement_a01_line_weighted_fraction_1t15_clumps_arrangement_a02_chain_fraction_1t15_clumps_arrangement_a02_chain_weighted_fraction_1t15_clumps_arrangement_a03_cluster_fraction_1t15_clumps_arrangement_a03_cluster_weighted_fraction_1t15_clumps_arrangement_a04_spiral_fraction_1t15_clumps_arrangement_a04_spiral_weighted_fraction_1t15_clumps_arrangement_total_count_1t15_clumps_arrangement_total_weight_1t16_clumps_count_a02_2_fraction_1t16_clumps_count_a02_2_weighted_fraction_1t16_clumps_count_a03_3_fraction_1t16_clumps_count_a03_3_weighted_fraction_1t16_clumps_count_a04_4_fraction_1t16_clumps_count_a04_4_weighted_fraction_1t16_clumps_count_a05_more_than_4_fraction_1t16_clumps_count_a05_more_than_4_weighted_fraction_1t16_clumps_count_a06_cant_tell_fraction_1t16_clumps_count_a06_cant_tell_weighted_fraction_1t16_clumps_count_a01_1_fraction_1t16_clumps_count_a01_1_weighted_fraction_1t16_clumps_count_total_count_1t16_clumps_count_total_weight_1t17_clumps_symmetrical_a01_yes_fraction_1t17_clumps_symmetrical_a01_yes_weighted_fraction_1t17_clumps_symmetrical_a02_no_fraction_1t17_clumps_symmetrical_a02_no_weighted_fraction_1t17_clumps_symmetrical_total_count_1t17_clumps_symmetrical_total_weight_1t18_clumps_embedded_a01_yes_fraction_1t18_clumps_embedded_a01_yes_weighted_fraction_1t18_clumps_embedded_a02_no_fraction_1t18_clumps_embedded_a02_no_weighted_fraction_1t18_clumps_embedded_total_count_1t18_clumps_embedded_total_weight_1zooniverse_id_2survey_id_2Table_2RA_2_1DEC_2_1Z_BEST_2GZ_MU_I_2imaging_2correction_type_2total_count_2total_weight_2t01_smooth_or_features_a01_smooth_fraction_2t01_smooth_or_features_a01_smooth_weighted_fraction_2t01_smooth_or_features_a01_smooth_debiased_fraction_2t01_smooth_or_features_a01_smooth_lower_limit_2t01_smooth_or_features_a01_smooth_upper_limit_2t01_smooth_or_features_a01_smooth_best_fraction_2t01_smooth_or_features_a01_smooth_flag_2t01_smooth_or_features_a02_features_or_disk_fraction_2t01_smooth_or_features_a02_features_or_disk_weighted_fraction_2t01_smooth_or_features_a02_features_or_disk_debiased_fraction_2t01_smooth_or_features_a02_features_or_disk_lower_limit_2t01_smooth_or_features_a02_features_or_disk_upper_limit_2t01_smooth_or_features_a02_features_or_disk_best_fraction_2t01_smooth_or_features_a02_features_or_disk_flag_2t01_smooth_or_features_a03_star_or_artifact_fraction_2t01_smooth_or_features_a03_star_or_artifact_weighted_fraction_2t01_smooth_or_features_a03_star_or_artifact_flag_2t01_smooth_or_features_total_count_2t01_smooth_or_features_total_weight_2t02_edgeon_a01_yes_fraction_2t02_edgeon_a01_yes_weighted_fraction_2t02_edgeon_a02_no_fraction_2t02_edgeon_a02_no_weighted_fraction_2t02_edgeon_total_count_2t02_edgeon_total_weight_2t03_bar_a01_bar_fraction_2t03_bar_a01_bar_weighted_fraction_2t03_bar_a02_no_bar_fraction_2t03_bar_a02_no_bar_weighted_fraction_2t03_bar_total_count_2t03_bar_total_weight_2t04_spiral_a01_spiral_fraction_2t04_spiral_a01_spiral_weighted_fraction_2t04_spiral_a02_no_spiral_fraction_2t04_spiral_a02_no_spiral_weighted_fraction_2t04_spiral_total_count_2t04_spiral_total_weight_2t05_bulge_prominence_a01_no_bulge_fraction_2t05_bulge_prominence_a01_no_bulge_weighted_fraction_2t05_bulge_prominence_a02_just_noticeable_fraction_2t05_bulge_prominence_a02_just_noticeable_weighted_fraction_2t05_bulge_prominence_a03_obvious_fraction_2t05_bulge_prominence_a03_obvious_weighted_fraction_2t05_bulge_prominence_a04_dominant_fraction_2t05_bulge_prominence_a04_dominant_weighted_fraction_2t05_bulge_prominence_total_count_2t05_bulge_prominence_total_weight_2t06_odd_a01_yes_fraction_2t06_odd_a01_yes_weighted_fraction_2t06_odd_a02_no_fraction_2t06_odd_a02_no_weighted_fraction_2t06_odd_total_count_2t06_odd_total_weight_2t07_rounded_a01_completely_round_fraction_2t07_rounded_a01_completely_round_weighted_fraction_2t07_rounded_a02_in_between_fraction_2t07_rounded_a02_in_between_weighted_fraction_2t07_rounded_a03_cigar_shaped_fraction_2t07_rounded_a03_cigar_shaped_weighted_fraction_2t07_rounded_total_count_2t07_rounded_total_weight_2t08_odd_feature_a01_ring_fraction_2t08_odd_feature_a01_ring_weighted_fraction_2t08_odd_feature_a02_lens_or_arc_fraction_2t08_odd_feature_a02_lens_or_arc_weighted_fraction_2t08_odd_feature_a03_disturbed_fraction_2t08_odd_feature_a03_disturbed_weighted_fraction_2t08_odd_feature_a04_irregular_fraction_2t08_odd_feature_a04_irregular_weighted_fraction_2t08_odd_feature_a05_other_fraction_2t08_odd_feature_a05_other_weighted_fraction_2t08_odd_feature_a06_merger_fraction_2t08_odd_feature_a06_merger_weighted_fraction_2t08_odd_feature_a07_dust_lane_fraction_2t08_odd_feature_a07_dust_lane_weighted_fraction_2t08_odd_feature_total_count_2t08_odd_feature_total_weight_2t09_bulge_shape_a01_rounded_fraction_2t09_bulge_shape_a01_rounded_weighted_fraction_2t09_bulge_shape_a02_boxy_fraction_2t09_bulge_shape_a02_boxy_weighted_fraction_2t09_bulge_shape_a03_no_bulge_fraction_2t09_bulge_shape_a03_no_bulge_weighted_fraction_2t09_bulge_shape_total_count_2t09_bulge_shape_total_weight_2t10_arms_winding_a01_tight_fraction_2t10_arms_winding_a01_tight_weighted_fraction_2t10_arms_winding_a02_medium_fraction_2t10_arms_winding_a02_medium_weighted_fraction_2t10_arms_winding_a03_loose_fraction_2t10_arms_winding_a03_loose_weighted_fraction_2t10_arms_winding_total_count_2t10_arms_winding_total_weight_2t11_arms_number_a01_1_fraction_2t11_arms_number_a01_1_weighted_fraction_2t11_arms_number_a02_2_fraction_2t11_arms_number_a02_2_weighted_fraction_2t11_arms_number_a03_3_fraction_2t11_arms_number_a03_3_weighted_fraction_2t11_arms_number_a04_4_fraction_2t11_arms_number_a04_4_weighted_fraction_2t11_arms_number_a05_more_than_4_fraction_2t11_arms_number_a05_more_than_4_weighted_fraction_2t11_arms_number_a06_cant_tell_fraction_2t11_arms_number_a06_cant_tell_weighted_fraction_2t11_arms_number_total_count_2t11_arms_number_total_weight_2t12_clumpy_a01_yes_fraction_2t12_clumpy_a01_yes_weighted_fraction_2t12_clumpy_a02_no_fraction_2t12_clumpy_a02_no_weighted_fraction_2t12_clumpy_total_count_2t12_clumpy_total_weight_2t13_bright_clump_a01_yes_fraction_2t13_bright_clump_a01_yes_weighted_fraction_2t13_bright_clump_a02_no_fraction_2t13_bright_clump_a02_no_weighted_fraction_2t13_bright_clump_total_count_2t13_bright_clump_total_weight_2t14_bright_clump_central_a01_yes_fraction_2t14_bright_clump_central_a01_yes_weighted_fraction_2t14_bright_clump_central_a02_no_fraction_2t14_bright_clump_central_a02_no_weighted_fraction_2t14_bright_clump_central_total_count_2t14_bright_clump_central_total_weight_2t15_clumps_arrangement_a01_line_fraction_2t15_clumps_arrangement_a01_line_weighted_fraction_2t15_clumps_arrangement_a02_chain_fraction_2t15_clumps_arrangement_a02_chain_weighted_fraction_2t15_clumps_arrangement_a03_cluster_fraction_2t15_clumps_arrangement_a03_cluster_weighted_fraction_2t15_clumps_arrangement_a04_spiral_fraction_2t15_clumps_arrangement_a04_spiral_weighted_fraction_2t15_clumps_arrangement_total_count_2t15_clumps_arrangement_total_weight_2t16_clumps_count_a02_2_fraction_2t16_clumps_count_a02_2_weighted_fraction_2t16_clumps_count_a03_3_fraction_2t16_clumps_count_a03_3_weighted_fraction_2t16_clumps_count_a04_4_fraction_2t16_clumps_count_a04_4_weighted_fraction_2t16_clumps_count_a05_more_than_4_fraction_2t16_clumps_count_a05_more_than_4_weighted_fraction_2t16_clumps_count_a06_cant_tell_fraction_2t16_clumps_count_a06_cant_tell_weighted_fraction_2t16_clumps_count_a01_1_fraction_2t16_clumps_count_a01_1_weighted_fraction_2t16_clumps_count_total_count_2t16_clumps_count_total_weight_2t17_clumps_symmetrical_a01_yes_fraction_2t17_clumps_symmetrical_a01_yes_weighted_fraction_2t17_clumps_symmetrical_a02_no_fraction_2t17_clumps_symmetrical_a02_no_weighted_fraction_2t17_clumps_symmetrical_total_count_2t17_clumps_symmetrical_total_weight_2t18_clumps_embedded_a01_yes_fraction_2t18_clumps_embedded_a01_yes_weighted_fraction_2t18_clumps_embedded_a02_no_fraction_2t18_clumps_embedded_a02_no_weighted_fraction_2t18_clumps_embedded_total_count_2t18_clumps_embedded_total_weight_2full_urlshallow_url
str10str19str13float64float64str17float64float64float64int16float32float32float32float64float64float64float64boolfloat32float32float64float64float64float64boolfloat32float32boolint16float32float32float32float32float32int16float32float32float32float32float32int16float32float32float32float32float32int16float32float32float32float32float32float32float32float32float32int16float32float32float32float32float32int16float32float32float32float32float32float32float32int16float32float32float32float32float32float32float32float32float32float32float32float32float32float32float32int16float32float32float32float32float32float32float32int16float32float32float32float32float32float32float32int16float32float32float32float32float32float32float32float32float32float32float32float32float32int16float32float32float32float32float32int16float32float32float32float32float32int16float32float32float32float32float32int16float32float32float32float32float32float32float32float32float32int16float32float32float32float32float32float32float32float32float32float32float32float32float32int16float32float32float32float32float32int16float32float32float32float32float32int16float32str10str19str13float64float64float64float64str17float64int16float32float32float32float64float64float64float64boolfloat32float32float64float64float64float64boolfloat32float32boolint16float32float32float32float32float32int16float32float32float32float32float32int16float32float32float32float32float32int16float32float32float32float32float32float32float32float32float32int16float32float32float32float32float32int16float32float32float32float32float32float32float32int16float32float32float32float32float32float32float32float32float32float32float32float32float32float32float32int16float32float32float32float32float32float32float32int16float32float32float32float32float32float32float32int16float32float32float32float32float32float32float32float32float32float32float32float32float32int16float32float32float32float32float32int16float32float32float32float32float32int16float32float32float32float32float32int16float32float32float32float32float32float32float32float32float32int16float32float32float32float32float32float32float32float32float32float32float32float32float32int16float32float32float32float32float32int16float32float32float32float32float32int16float32str91str46
AHZ300000850000016goods_shallow189.480524162.2549065GOODS-N0.471920.30577369591.0358346.4880.7630.8050.6161808611760.596797230970.8095630439490.803999997675True0.0760.0820.2698191387650.0764369559910.289202768970.082000002265False0.1610.114False118110.1390.00.01.01.077.00.00.01.01.077.00.00.01.01.077.00.1430.1430.7140.7140.1430.1430.00.077.00.0710.0620.9290.9389997.6260.7250.7210.2750.2790.00.09189.6260.00.00.00.00.4290.3440.5710.6560.00.00.00.00.00.076.0970.00.00.00.00.00.000.00.00.00.00.00.00.000.00.00.00.00.00.00.00.00.00.00.00.00.000.00.2220.2220.7780.77899.00.00.00.00.000.00.00.00.00.000.00.00.00.00.00.00.00.00.000.00.00.00.00.00.00.00.00.00.00.01.01.022.00.50.50.50.522.01.01.00.00.022.0AGZ000823f30919hubble189.480529962.25491160.471922.9891018009GOODS-N-FULLDEPTH1.04141.00.5609760.5609760.3923916097360.4188454088990.6023527822490.56097561121False0.2195120.2195120.3880961958690.1781350233560.3616423967060.219512194395False0.2195120.219512False4141.00.00.01.01.044.00.00.01.01.044.00.250.250.750.7544.00.250.250.750.750.00.00.00.044.00.1250.1250.8750.8753232.00.6956520.6956520.3043480.3043480.00.02323.00.00.00.00.00.00.00.250.250.00.00.50.50.250.2544.00.00.00.00.00.00.000.00.00.00.00.01.01.011.01.01.00.00.00.00.00.00.00.00.00.00.011.00.5555560.5555560.4444440.44444499.01.01.00.00.022.01.01.00.00.022.00.00.00.00.00.00.01.01.011.00.60.60.20.20.00.00.00.00.00.00.20.255.01.01.00.00.055.00.60.60.40.455.0http://www.galaxyzoo.org.s3.amazonaws.com/subjects/standard/goods_full_n_30919_standard.jpghttp://zoo-hst.s3.amazonaws.com/50000016.jpg
AHZ300002z50000355goods_shallow189.495318262.2718433GOODS-N1.2369999885619.33948747143.0427411.8390.6610.7030.1239574267nannan0.701999992132False0.1650.180.758042572585nannan0.180000007153False0.1730.118False127116.7620.1670.1670.8330.8331818.00.00.01.01.01515.00.2670.2670.7330.7331515.00.00.00.60.60.1330.1330.2670.2671515.00.0960.0880.9040.912104102.0260.3930.390.5710.5730.0360.0378482.0260.10.0030.00.00.10.1110.80.8860.00.00.00.00.00.0109.0251.01.00.00.00.00.033.00.250.250.00.00.750.7544.00.250.250.50.50.00.00.00.00.00.00.250.2544.00.1430.1430.8570.8572121.00.00.00.00.000.00.00.00.00.000.00.00.00.00.00.00.00.00.000.00.00.00.00.00.00.00.00.00.00.01.01.033.00.00.01.01.022.00.50.50.50.522.0AGZ000825731238hubble189.495308862.27184291.2369999885622.1302698555GOODS-N-FULLDEPTH3.04040.00.5750.5750.0656360428397nannan0.574999988079False0.30.30.80936395716nannan0.300000011921False0.1250.125False4040.00.5714290.5714290.4285710.42857177.00.3333330.3333330.6666670.66666733.00.00.01.01.033.00.00.00.6666670.6666670.3333330.3333330.00.033.00.08571430.08571430.9142860.9142863535.00.2173910.2173910.7826090.7826090.00.02323.00.3333330.3333330.00.00.00.00.00.00.3333330.3333330.00.00.00.033.01.01.00.00.00.00.044.00.00.00.00.00.00.000.00.00.00.00.00.00.00.00.00.00.00.00.000.00.4166670.4166670.5833330.5833331212.00.00.00.00.000.00.00.00.00.000.00.00.00.00.00.00.00.00.000.01.01.00.00.00.00.00.00.00.00.00.00.055.01.01.00.00.055.00.80.80.20.255.0http://www.galaxyzoo.org.s3.amazonaws.com/subjects/standard/goods_full_n_31238_standard.jpghttp://zoo-hst.s3.amazonaws.com/50000355.jpg
AHZ300004c50000682goods_shallow189.378703362.2245128GOODS-N0.8905000090619.31239103353.0438429.7410.7270.7810.334258851582nannan0.780000001192False0.1570.1690.614741149372nannan0.168999999762False0.1160.051False121112.7410.0910.0910.9090.9091111.00.10.10.90.91010.00.20.20.80.81010.00.10.10.70.70.10.10.10.11010.00.1680.1680.8320.832107107.00.0450.0450.9550.9550.00.08888.00.00.00.0560.0560.1670.1670.2220.2220.3890.3890.0560.0560.1110.1111818.00.00.00.00.01.01.011.00.50.50.50.50.00.022.00.00.00.00.00.00.00.00.00.00.01.01.022.00.4210.4210.5790.5791919.00.6250.6250.3750.37588.01.01.00.00.055.00.50.50.50.50.00.00.00.022.01.01.00.00.00.00.00.00.00.00.00.00.088.00.6250.6250.3750.37588.00.8750.8750.1250.12588.0AGZ00081fb26533hubble189.378702262.2245140.8905000090621.0715100024GOODS-N-FULLDEPTH1.04040.00.5750.5750.1344033010650.04638779012630.4161762520170.416176252017False0.20.20.6405967048960.3588237539430.7286122158340.358823753943False0.2250.225False4040.00.00.01.01.033.00.00.01.01.033.00.00.01.01.033.00.3333330.3333330.6666670.6666670.00.00.00.033.00.161290.161290.838710.838713131.00.3478260.3478260.6521740.6521740.00.02323.00.00.00.20.20.00.00.20.20.60.60.20.20.00.055.00.00.00.00.00.00.000.00.00.00.00.00.00.000.00.00.00.00.00.00.00.00.00.00.00.00.000.00.6250.6250.3750.37588.00.6666670.6666670.3333330.33333333.00.50.50.50.522.00.00.00.00.00.00.01.01.011.00.40.40.40.40.00.00.00.00.00.00.20.255.01.01.00.00.044.00.250.250.750.7544.0http://www.galaxyzoo.org.s3.amazonaws.com/subjects/standard/goods_full_n_26533_standard.jpghttp://zoo-hst.s3.amazonaws.com/50000682.jpg
AHZ300005h50000921goods_shallow189.399391562.2203285GOODS-N0.933399975319.29520184913.0376369.0840.7310.7750.311257827167nannan0.77500000596False0.1630.1740.637742173786nannan0.173999994993False0.1060.051False10497.6960.10.10.90.91010.00.1110.1110.8890.88999.00.4440.4440.5560.55699.00.4440.4440.00.00.1110.1110.4440.44499.00.140.140.860.869392.6940.0780.0780.9220.9220.00.07776.6940.0770.0770.0770.0770.0770.0770.6920.6920.00.00.0770.0770.00.01313.00.00.00.00.01.01.011.00.50.50.00.00.50.544.00.750.750.250.250.00.00.00.00.00.00.00.044.00.4120.4120.5880.5881717.00.20.20.80.855.01.01.00.00.011.00.00.01.01.00.00.00.00.011.00.5710.5710.00.00.00.00.00.00.1430.1430.2860.28677.00.50.50.50.566.00.6670.6670.3330.33366.0AGZ00081l127708hubble189.399386462.22032730.933399975320.8860775587GOODS-N-FULLDEPTH1.04040.00.550.550.1047004845440.04638779012630.4161762520170.416176252017False0.2250.2250.6702995214160.3588237539430.7286122158340.358823753943False0.2250.225False4040.00.00.01.01.044.00.50.50.50.544.00.00.01.01.044.00.50.50.50.50.00.00.00.044.00.2258060.2258060.7741940.7741943131.00.2727270.2727270.5454550.5454550.1818180.1818182222.00.00.00.1428570.1428570.00.00.1428570.1428570.4285710.4285710.4285710.4285710.00.077.00.00.00.00.00.00.000.00.00.00.00.00.00.000.00.00.00.00.00.00.00.00.00.00.00.00.000.00.5555560.5555560.4444440.44444499.00.40.40.60.655.00.00.01.01.022.00.00.00.00.00.00.00.00.000.00.00.01.01.00.00.00.00.00.00.00.00.055.00.6666670.6666670.3333330.33333333.01.01.00.00.033.0http://www.galaxyzoo.org.s3.amazonaws.com/subjects/standard/goods_full_n_27708_standard.jpghttp://zoo-hst.s3.amazonaws.com/50000921.jpg
AHZ300006950001102goods_shallow189.334874562.2558847GOODS-N0.93720000982318.76876277853.0353343.5970.7330.8050.333546724082nannan0.804999995977False0.1430.1570.62845327714nannan0.157000005245False0.1240.038False10595.5970.0710.0710.9290.9291414.00.00.01.01.01313.00.00.01.01.01313.00.00.00.1540.1540.6150.6150.2310.2311313.00.0540.0540.9460.9469393.00.2820.2820.7050.7050.0130.0137878.00.20.20.00.00.00.00.20.20.40.40.20.20.00.055.01.01.00.00.00.00.011.00.00.00.00.00.00.000.00.00.00.00.00.00.00.00.00.00.00.00.000.00.0670.0670.9330.9331515.00.00.00.00.000.00.00.00.00.000.00.00.00.00.00.00.00.00.000.00.00.00.00.00.00.00.00.00.00.01.01.011.01.01.00.00.011.01.01.00.00.011.0AGZ000810p23731hubble189.334875362.25588680.93720000982321.2056152664GOODS-N-FULLDEPTH0.04040.00.4250.4250.01941445814420.02465689903770.3660008420110.0194144581442False0.30.30.7055855358950.3589991520280.7003430950020.705585535895False0.2750.275False4040.00.3333330.3333330.6666670.66666799.00.00.01.01.066.00.00.01.01.066.00.00.00.3333330.3333330.6666670.6666670.00.066.00.1724140.1724140.8275860.8275862929.00.5294120.5294120.4705880.4705880.00.01717.00.20.20.00.00.00.00.00.00.20.20.60.60.40.455.01.01.00.00.00.00.033.00.00.00.00.00.00.000.00.00.00.00.00.00.00.00.00.00.00.00.000.00.250.250.750.751212.01.01.00.00.022.01.01.00.00.022.00.00.00.50.50.50.50.00.022.00.3333330.3333330.00.00.6666670.6666670.00.00.00.00.00.033.01.01.00.00.033.00.00.01.01.033.0http://www.galaxyzoo.org.s3.amazonaws.com/subjects/standard/goods_full_n_23731_standard.jpghttp://zoo-hst.s3.amazonaws.com/50001102.jpg
AHZ300006k50001159goods_shallow189.424344562.233048GOODS-N0.51179999113117.14603427423.0421412.6790.7670.8050.614338850959nannan0.80500000529False0.1640.1740.364661149324nannan0.173999994993False0.0690.021False116109.4330.00.01.01.01414.00.00.01.01.01414.00.00.01.01.01414.00.00.00.00.00.2860.2860.7140.7141414.00.1670.1680.8330.832108107.1230.8090.8170.1910.1830.00.08988.1230.1670.1670.6110.6110.00.00.00.00.1670.1670.0560.0560.00.01818.00.00.00.00.00.00.000.00.00.00.00.00.00.000.00.00.00.00.00.00.00.00.00.00.00.00.000.00.2630.2630.7370.7371919.00.00.00.00.000.00.00.00.00.000.00.00.00.00.00.00.00.00.000.00.00.00.00.00.00.00.00.00.00.01.01.055.00.60.60.40.455.00.80.80.20.255.0AGZ00081rr28900hubble189.424343462.23305030.51179999113119.3080290105GOODS-N-FULLDEPTH0.04039.04060.6250.6403590.424091856270.5327287635090.6316267419680.42409185627False0.10.1024570.3187249197670.1111900340690.2100880125280.318724919767False0.2750.257183False4039.04060.00.01.01.033.00.00.01.01.033.00.00.01.01.033.00.00.00.00.01.01.00.00.033.00.1724140.1724140.8275860.8275862929.00.760.760.240.240.00.02525.00.00.00.00.00.00.00.00.00.20.20.40.40.00.055.00.00.00.00.00.00.000.00.00.00.00.00.00.000.00.00.00.00.00.00.00.00.00.00.00.00.000.00.250.250.750.7544.01.01.00.00.011.01.01.00.00.011.00.00.01.01.00.00.00.00.011.00.00.00.00.00.00.00.00.00.00.01.01.011.01.01.00.00.011.00.00.01.01.011.0http://www.galaxyzoo.org.s3.amazonaws.com/subjects/standard/goods_full_n_28900_standard.jpghttp://zoo-hst.s3.amazonaws.com/50001159.jpg
AHZ300006l50001162goods_shallow189.509796962.2870946GOODS-N0.23250000178818.73884084032.0468454.8650.720.7620.836294011347nannan0.761999994516False0.1670.180.105705990322nannan0.180000007153False0.1140.058False132122.3390.3160.3160.6840.6841919.00.0770.0770.9230.9231313.00.1540.1540.8460.8461313.00.00.00.3850.3850.3850.3850.2310.2311313.00.1970.20.8030.8117115.2630.0310.0320.9270.9260.0420.0429694.2630.1740.1740.00.00.0430.0430.130.130.5220.5220.130.130.00.02323.00.50.50.3330.3330.1670.16766.01.01.00.00.00.00.022.00.00.00.00.00.00.00.00.00.00.01.01.022.00.1360.1360.8640.8642222.01.01.00.00.011.00.00.01.01.011.00.00.00.00.01.01.00.00.011.00.3330.3330.00.00.00.00.00.00.00.00.6670.66733.01.01.00.00.022.00.00.01.01.022.0AGZ000826p31508hubble189.509796662.28709750.23250000178821.290739731GOODS-N-FULLDEPTH2.04039.0230.5384620.5384620.610056447345nannan0.538461521268False0.256410.256410.184815344852nannan0.256410270929False0.2051280.205128False3939.00.250.250.750.7588.00.00.01.01.066.00.3333330.3333330.6666670.66666766.00.00.00.8333330.8333330.1666670.1666670.00.066.00.161290.161290.838710.838713131.00.1428570.1428570.8571430.8571430.00.02121.00.20.20.00.00.00.00.20.20.40.40.20.20.20.255.00.50.50.50.50.00.022.00.50.50.00.00.50.522.00.00.00.00.00.00.00.00.00.00.01.01.022.00.20.20.80.81010.00.00.00.00.000.00.00.00.00.000.00.00.00.00.00.00.00.00.000.01.01.00.00.00.00.00.00.00.00.00.00.022.01.01.00.00.022.00.50.50.50.522.0http://www.galaxyzoo.org.s3.amazonaws.com/subjects/standard/goods_full_n_31508_standard.jpghttp://zoo-hst.s3.amazonaws.com/50001162.jpg
AHZ300006t50001204goods_shallow189.4239362.2603256GOODS-N0.30559998750719.14577290780.0423402.5860.7690.8430.8366756182790.8113475483050.8671891917280.836675618279True0.1120.1260.1323243822270.1018108087780.1576524522010.132324382227False0.1190.031False134119.3080.60.60.40.41515.00.00.01.01.066.00.1670.1670.8330.83366.00.50.50.1670.1670.00.00.3330.33366.00.050.0430.950.957120117.6220.0290.020.8560.8670.1150.113104101.6220.1670.0070.00.00.1670.1990.50.5960.00.00.1670.1990.00.065.0340.8890.8890.1110.1110.00.099.01.01.00.00.00.00.011.00.00.00.00.00.00.00.00.00.00.01.01.011.00.00.01.01.01515.00.00.00.00.000.00.00.00.00.000.00.00.00.00.00.00.00.00.000.00.00.00.00.00.00.00.00.00.00.00.00.000.00.00.00.00.000.00.00.00.00.000.0AGZ00081rm28885hubble189.423930762.26032680.30559998750720.8599413213GOODS-N-FULLDEPTH0.04141.00.5365850.5365850.5307134384220.379813124950.5298219200340.530713438422False0.2195120.2195120.2253841167380.2262756351270.3762844302110.225384116738False0.2439020.243902False4141.00.750.750.250.2588.00.00.01.01.022.01.01.00.00.022.00.00.01.01.00.00.00.00.022.00.1290320.1290320.8709680.8709683131.00.09090910.09090910.8636360.8636360.04545450.04545452222.00.00.00.00.00.250.250.00.00.00.00.00.00.00.044.00.8333330.8333330.00.00.1666670.16666766.00.50.50.50.50.00.022.00.00.00.50.50.00.00.00.00.00.00.50.522.00.1111110.1111110.8888890.88888999.00.00.00.00.000.00.00.00.00.000.00.00.00.00.00.00.00.00.000.01.01.00.00.00.00.00.00.00.00.00.00.011.00.00.01.01.011.00.00.01.01.011.0http://www.galaxyzoo.org.s3.amazonaws.com/subjects/standard/goods_full_n_28885_standard.jpghttp://zoo-hst.s3.amazonaws.com/50001204.jpg
AHZ300007h50001321goods_shallow189.412178862.2614914GOODS-N0.18950000405318.79876224542.0383373.6410.8060.8721.01408357959nannan0.872000001371True0.0650.07-0.0720835779222nannan0.070000000298False0.1290.058False124114.6410.50.50.50.566.00.00.01.01.033.00.00.01.01.033.01.01.00.00.00.00.00.00.033.00.1190.1190.8810.881109109.00.010.010.7820.7820.2080.208101101.00.00.00.0770.0770.1540.1540.0770.0770.4620.4620.2310.2310.00.01313.01.01.00.00.00.00.033.00.00.00.00.00.00.000.00.00.00.00.00.00.00.00.00.00.00.00.000.00.250.250.750.7588.00.50.50.50.522.01.01.00.00.011.00.00.01.01.00.00.00.00.011.00.50.50.50.50.00.00.00.00.00.00.00.022.00.00.01.01.022.00.00.01.01.022.0AGZ00081oe28307hubble189.412192662.26149790.18950000405320.5178281005GOODS-N-FULLDEPTH2.04039.86710.5250.5234170.642794438687nannan0.523417055607False0.250.2508330.131455740843nannan0.250833123922False0.2250.22575False4039.86710.20.20.80.855.00.00.01.01.044.00.00.01.01.044.00.50.50.00.00.50.50.00.044.00.2903230.2915720.7096770.7084283130.86710.09523810.09584450.9047620.9041560.00.02120.86710.00.00.00.00.1111110.1111110.00.00.3333330.3333330.6666670.6666670.1111110.11111199.01.01.00.00.00.00.011.00.00.00.00.00.00.000.00.00.00.00.00.00.00.00.00.00.00.00.000.00.50.50.50.51010.00.3333330.3333330.6666670.66666733.01.01.00.00.011.00.50.50.50.50.00.00.00.022.00.40.40.20.20.00.00.00.00.00.00.40.455.00.40.40.60.655.01.01.00.00.055.0http://www.galaxyzoo.org.s3.amazonaws.com/subjects/standard/goods_full_n_28307_standard.jpghttp://zoo-hst.s3.amazonaws.com/50001321.jpg
AHZ300008450001449goods_shallow189.482588762.2824295GOODS-N0.44170001149217.0912178163.0398390.7230.6220.6620.532842822281nannan0.662000000477False0.1850.1970.326157175097nannan0.196999996901False0.1930.141False119111.7230.050.050.950.952020.00.3160.3160.6840.6841919.00.00.01.01.01919.00.00.00.0530.0530.4210.4210.5260.5261919.00.0210.0210.9790.9799797.00.6350.6350.3510.3510.0140.0147474.00.50.50.00.00.50.50.00.00.00.00.00.00.00.022.01.01.00.00.00.00.011.00.00.00.00.00.00.000.00.00.00.00.00.00.00.00.00.00.00.00.000.00.0910.0910.9090.9092222.00.00.00.00.000.00.00.00.00.000.00.00.00.00.00.00.00.00.000.00.00.00.00.00.00.00.00.00.00.01.01.022.00.50.50.50.522.01.01.00.00.022.0AGZ000823s30976hubble189.482589162.28245340.44170001149220.555809034GOODS-N-FULLDEPTH0.04040.00.550.550.4073990067590.4638780370570.6478871135970.407399006759False0.1750.1750.3176009872810.07711288044280.2611219569830.317600987281False0.2750.275False4040.00.40.40.60.655.00.6666670.6666670.3333330.33333333.00.00.01.01.033.00.00.00.00.01.01.00.00.033.00.2068970.2068970.7931030.7931032929.00.7272730.7272730.2272730.2272730.04545450.04545452222.00.00.00.00.00.00.00.1666670.1666670.00.00.00.00.1666670.16666766.01.01.00.00.00.00.022.00.00.00.00.00.00.000.00.00.00.00.00.00.00.00.00.00.00.00.000.00.2857140.2857140.7142860.71428677.00.00.00.00.000.00.00.00.00.000.00.00.00.00.00.00.00.00.000.01.01.00.00.00.00.00.00.00.00.00.00.022.01.01.00.00.022.00.50.50.50.522.0http://www.galaxyzoo.org.s3.amazonaws.com/subjects/standard/goods_full_n_30976_standard.jpghttp://zoo-hst.s3.amazonaws.com/50001449.jpg
..............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
AHZ40008jz90107786goods_shallow53.1592675-27.6621294GOODS-S0.958520.25393519971.0321319.0040.6450.6570.1289453080440.4287219660540.611428486470.61142848647False0.0930.0950.6230546960090.1405715175840.3232780379990.140571517584False0.2620.248False107105.0040.00.01.01.044.00.00.01.01.044.00.00.01.01.044.00.750.750.250.250.00.00.00.044.00.2150.2150.7850.7857979.00.0140.0140.9430.9430.0430.0437070.00.00.00.00.00.00.00.5290.5290.4120.4120.0590.0590.00.01717.00.00.00.00.00.00.000.00.00.00.00.00.00.000.00.00.00.00.00.00.00.00.00.00.00.00.000.00.60.60.40.41010.00.3330.3330.6670.66733.01.01.00.00.011.00.50.50.00.00.50.50.00.022.00.3330.3330.00.00.00.00.00.00.1670.1670.50.566.00.40.40.60.655.00.60.60.40.455.0AGZ000853620510hubble53.1592767-27.662130.958521.9684837616GOODS-S-FULLDEPTH1.04040.00.50.50.03672421184770.02852544843160.4056609319110.405660931911False0.2250.2250.6882757821920.3193390621280.6964745456080.319339062128False0.2750.275False4040.00.00.01.01.055.00.00.01.01.055.00.20.20.80.855.00.60.60.20.20.20.20.00.055.00.3103450.3103450.6896550.6896552929.00.150.150.70.70.150.152020.00.1111110.1111110.00.00.1111110.1111110.2222220.2222220.4444440.4444440.2222220.2222220.00.099.00.00.00.00.00.00.000.01.01.00.00.00.00.011.00.00.00.00.00.00.00.00.00.00.01.01.011.00.4444440.4444440.5555560.55555699.01.01.00.00.044.00.250.250.750.7544.01.01.00.00.00.00.00.00.022.00.00.00.50.50.00.00.250.250.250.250.00.044.01.01.00.00.011.01.01.00.00.011.0http://www.galaxyzoo.org.s3.amazonaws.com/subjects/standard/goods_full_s_20510_standard.jpghttp://zoo-hst.s3.amazonaws.com/90107786.jpg
AHZ40008k990107796goods_shallow53.1073372-27.729699GOODS-S1.2311120.94264704983.0355346.7980.3940.41-0.223467324629nannan0.410000003874False0.1090.1150.74846733059nannan0.115000002086False0.4960.475False137130.1660.00.01.01.055.00.00.01.01.055.00.00.01.01.055.00.60.60.20.20.20.20.00.055.00.1570.1590.8430.8417069.3160.0550.0430.8550.8650.0910.0925554.3160.00.00.0910.0910.1820.1820.3640.3640.1820.1820.1820.1820.00.01111.00.00.00.00.00.00.000.00.00.00.00.00.00.000.00.00.00.00.00.00.00.00.00.00.00.00.000.00.6670.6670.3330.3331515.00.50.50.50.588.00.250.250.750.7544.00.20.20.00.00.80.80.00.055.00.40.40.00.00.10.10.10.10.20.20.20.21010.00.20.20.80.81010.00.30.30.70.71010.0AGZ00083y212101hubble53.1073195-27.72972391.2311124.1793037355GOODS-S-FULLDEPTH3.04141.00.5853660.5853660.00633493848091nannan0.585365861654False0.2195120.2195120.798543117568nannan0.219512194395False0.1951220.195122False4141.00.00.01.01.033.00.3333330.3333330.6666670.66666733.00.3333330.3333330.6666670.66666733.00.00.01.01.00.00.00.00.033.00.2121210.2121210.7878790.7878793333.00.1250.1250.7916670.7916670.08333330.08333332424.00.00.00.1428570.1428570.1428570.1428570.5714290.5714290.2857140.2857140.00.00.00.077.00.00.00.00.00.00.000.00.00.01.01.00.00.011.00.00.00.00.00.00.00.00.00.00.01.01.011.00.6666670.6666670.3333330.33333399.01.01.00.00.055.00.60.60.40.455.00.00.00.50.50.50.50.00.022.00.1666670.1666670.50.50.1666670.1666670.00.00.00.00.1666670.16666766.00.250.250.750.7544.00.00.01.01.044.0http://www.galaxyzoo.org.s3.amazonaws.com/subjects/standard/goods_full_s_12101_standard.jpghttp://zoo-hst.s3.amazonaws.com/90107796.jpg
AHZ40008ke90107801goods_shallow53.1598702-27.9024326GOODS-S1.3450000286120.04889873583.0409398.5920.7620.8040.098928060306nannan0.804000005126False0.0560.0590.764071945178nannan0.0590000003576False0.1820.137False143134.4560.00.01.01.066.00.00.01.01.066.00.00.01.01.066.00.3330.3330.3330.3330.1670.1670.1670.16766.00.0690.070.9310.93116115.0680.5450.5440.4550.4560.00.0110109.0680.3750.3750.00.00.1250.1250.1250.1250.3750.3750.00.00.00.088.00.00.00.00.00.00.000.00.00.00.00.00.00.000.00.00.00.00.00.00.00.00.00.00.00.00.000.00.1430.1430.8570.85777.00.00.00.00.000.00.00.00.00.000.00.00.00.00.00.00.00.00.000.00.00.00.00.00.00.00.00.00.00.01.01.011.00.00.00.00.000.00.00.00.00.000.0AGZ000853j20609hubble53.1598795-27.90245151.3450000286122.5958312899GOODS-S-FULLDEPTH3.04040.00.3250.325-0.0980485849505nannan0.325000017881False0.450.450.873048590911nannan0.449999988079False0.2250.225False4040.00.6250.6250.3750.3751616.00.00.01.01.066.00.50.50.50.566.00.1666670.1666670.3333330.3333330.50.50.00.066.00.1290320.1290320.8709680.8709683131.00.00.00.6923080.6923080.3076920.3076921313.00.750.750.00.00.250.250.250.250.00.00.00.00.00.044.00.90.90.10.10.00.01010.00.6666670.6666670.00.00.3333330.33333333.00.00.00.3333330.3333330.00.00.00.00.00.00.6666670.66666733.00.1111110.1111110.8888890.8888891818.00.00.01.01.011.00.00.00.00.000.00.00.01.01.00.00.00.00.011.00.50.50.00.00.00.00.00.00.00.00.50.522.00.00.01.01.022.00.00.01.01.022.0http://www.galaxyzoo.org.s3.amazonaws.com/subjects/standard/goods_full_s_20609_standard.jpghttp://zoo-hst.s3.amazonaws.com/90107801.jpg
AHZ40008kl90107808goods_shallow53.2522723-27.8799723GOODS-S0.88499999046319.85357689373.0384377.4710.7420.7820.3020542189470.2927500341870.6952177590510.781999997795False0.1020.1070.5869457796220.1937822395180.5962499643820.107000000775False0.1560.111False128121.4710.6920.6920.3080.3081313.00.00.01.01.044.00.00.01.01.044.01.01.00.00.00.00.00.00.044.00.0560.0560.9440.944108108.00.00.00.1470.1470.8530.8539595.00.1670.1670.00.00.00.00.6670.6670.00.00.1670.1670.00.066.00.2220.2220.00.00.7780.77899.00.00.00.00.00.00.000.00.00.00.00.00.00.00.00.00.00.00.00.000.00.00.01.01.01313.00.00.00.00.000.00.00.00.00.000.00.00.00.00.00.00.00.00.000.00.00.00.00.00.00.00.00.00.00.00.00.000.00.00.00.00.000.00.00.00.00.000.0AGZ000866429193hubble53.2522845-27.8799610.88499999046321.6224869047GOODS-S-FULLDEPTH1.04040.00.60.60.1860769878230.1496568990380.4910008420110.491000842011False0.250.250.6639230062170.3589991520280.7003430950020.358999152028False0.150.15False4040.00.6666670.6666670.3333330.33333366.01.01.00.00.022.00.00.01.01.022.00.00.01.01.00.00.00.00.022.00.2352940.2352940.7647060.7647063434.00.04166670.04166670.5416670.5416670.4166670.4166672424.00.00.00.250.250.1250.1250.3750.3750.00.00.00.00.250.2588.00.00.00.00.01.01.044.00.00.00.00.00.00.000.00.00.00.00.00.00.00.00.00.00.00.00.000.00.40.40.60.61010.01.01.00.00.011.01.01.00.00.011.00.00.00.00.00.00.01.01.011.00.750.750.00.00.00.00.00.00.250.250.00.044.00.50.50.50.544.00.750.750.250.2544.0http://www.galaxyzoo.org.s3.amazonaws.com/subjects/standard/goods_full_s_29193_standard.jpghttp://zoo-hst.s3.amazonaws.com/90107808.jpg
AHZ40008kp90107812goods_shallow53.2069422-27.7641334GOODS-S0.2808220.95985655442.0328323.180.580.5840.6046932873790.5994911142450.6862704716810.583000004292False0.170.1740.1523067119060.07072952760360.1575088850390.173999994993False0.250.243False10097.8590.1250.1250.8750.87588.00.00.01.01.077.00.00.01.01.077.00.4290.4290.4290.4290.1430.1430.00.077.00.160.150.840.857574.1070.1030.0890.50.5080.3970.4035857.1070.00.00.00.00.250.270.4170.450.3330.280.00.00.00.01211.1071.01.00.00.00.00.011.00.00.00.00.00.00.000.00.00.00.00.00.00.00.00.00.00.00.00.000.00.5290.5290.4710.4711717.01.01.00.00.033.00.6670.6670.3330.33333.00.00.00.3330.3330.6670.6670.00.033.00.00.00.00.00.00.00.2220.2220.1110.1110.6670.66799.00.2220.2220.7780.77899.00.5560.5560.4440.44499.0AGZ00085tn26136hubble53.2069622-27.76412080.56699997186723.557219735GOODS-S-FULLDEPTH0.04040.00.20.20.06480073174260.0403020582390.0403020582390.0648007317426False0.5750.5750.7101992742180.7346979477210.7346979477210.710199274218False0.2250.225False4040.00.3333330.3333330.6666670.6666671818.00.8333330.8333330.1666670.1666671212.00.50.50.50.51212.00.4166670.4166670.50.50.08333330.08333330.00.01212.00.3870970.3870970.6129030.6129033131.00.250.250.3750.3750.3750.37588.00.1666670.1666670.08333330.08333330.08333330.08333330.50.50.1666670.1666670.250.250.1666670.1666671212.00.00.00.50.50.50.566.00.3333330.3333330.00.00.6666670.66666766.00.3333330.3333330.3333330.3333330.00.00.00.00.00.00.3333330.33333366.00.2173910.2173910.7826090.7826092323.01.01.00.00.044.00.750.750.250.2544.00.00.00.00.00.00.00.00.000.00.20.20.80.80.00.00.00.00.00.00.00.055.00.50.50.50.544.00.50.50.50.544.0http://www.galaxyzoo.org.s3.amazonaws.com/subjects/standard/goods_full_s_26136_standard.jpghttp://zoo-hst.s3.amazonaws.com/90107812.jpg
AHZ40008kv90107818goods_shallow53.0984065-27.7668673GOODS-S1.0329999923721.85575518233.0257254.00.1040.107-0.432506602922-0.1305118151150.1756258425610.107000008225False0.1480.1520.691506606260.08337416077680.3895118184530.151999995112False0.7480.741False115112.00.00.01.01.01212.00.00.01.01.01313.00.00.01.01.01212.00.9230.9230.0770.0770.00.00.00.01313.00.4480.4480.5520.5522929.00.5380.5380.4620.4620.00.01313.00.00.00.00.00.00.00.3080.3080.6920.6920.00.00.00.01313.00.00.00.00.00.00.000.00.00.00.00.01.01.011.00.00.00.00.00.00.00.00.00.00.01.01.011.00.2940.2940.7060.7061717.00.00.01.01.033.00.00.00.00.000.00.00.00.250.250.50.50.250.2544.00.00.00.00.00.00.00.40.40.40.40.20.255.00.3330.3330.6670.66733.00.3330.3330.6670.66733.0AGZ00083sk10725hubble53.0983828-27.7669491.0329999923724.4090369345GOODS-S-FULLDEPTH3.04040.00.2750.275-0.0866811088255-0.138841640278-0.1388416402780.27500000596False0.450.450.8116811028650.8638416343180.8638416343180.449999988079False0.2750.275False4040.00.07142860.07142860.9285710.9285711414.00.00.01.01.01313.00.3846150.3846150.6153850.6153851313.00.7692310.7692310.2307690.2307690.00.00.00.01313.00.4137930.4137930.5862070.5862072929.00.4545450.4545450.3636360.3636360.1818180.1818181111.00.00.00.08333330.08333330.08333330.08333330.4166670.4166670.250.250.08333330.08333330.1666670.1666671212.00.00.00.00.01.01.011.00.00.00.00.01.01.055.00.20.20.80.80.00.00.00.00.00.00.00.055.00.2222220.2222220.7777780.7777781818.00.50.50.50.544.00.00.01.01.022.00.00.00.250.250.50.50.250.2544.00.00.00.00.00.00.00.250.250.00.00.750.7544.00.50.50.50.522.00.00.01.01.022.0http://www.galaxyzoo.org.s3.amazonaws.com/subjects/standard/goods_full_s_10725_standard.jpghttp://zoo-hst.s3.amazonaws.com/90107818.jpg
AHZ40008kz90107822goods_shallow53.0449928-27.7743277GOODS-S1.6069999933221.65124595913.0281270.0150.2260.25-0.439562113544nannan0.249999985099False0.1570.1730.86256209161nannan0.172999992967False0.6170.577False115104.0150.00.01.01.01212.00.00.01.01.01212.00.00.01.01.01212.00.9170.9170.0830.0830.00.00.00.01212.00.1820.1820.8180.8184444.00.5380.5380.4620.4620.00.02626.00.00.00.00.00.1250.1250.3750.3750.50.50.00.00.00.088.00.00.00.00.00.00.000.00.00.00.00.00.00.000.00.00.00.00.00.00.00.00.00.00.00.00.000.00.3330.3330.6670.6671818.00.00.01.01.022.00.00.00.00.000.00.00.00.00.01.01.00.00.022.00.00.00.00.00.00.00.00.00.3330.3330.6670.66766.00.1670.1670.8330.83366.00.1670.1670.8330.83366.0AGZ00082rm3678hubble53.044949-27.77439341.6069999933224.5476178272GOODS-S-FULLDEPTH3.04141.00.4390240.439024-0.185100395143nannan0.43902438879False0.2682930.2682930.892417479217nannan0.268292695284False0.2926830.292683False4141.00.00.01.01.044.00.00.01.01.044.00.00.01.01.044.00.50.50.50.50.00.00.00.044.00.2413790.2413790.7586210.7586212929.00.7222220.7222220.1666670.1666670.1111110.1111111818.00.00.00.00.00.1428570.1428570.4285710.4285710.4285710.4285710.00.00.00.077.00.00.00.00.00.00.000.00.00.00.00.00.00.000.00.00.00.00.00.00.00.00.00.00.00.00.000.00.6363640.6363640.3636360.3636361111.00.50.50.50.522.01.01.00.00.011.00.00.00.50.50.50.50.00.022.00.7142860.7142860.00.00.00.00.1428570.1428570.00.00.1428570.14285777.00.5714290.5714290.4285710.42857177.00.2857140.2857140.7142860.71428677.0http://www.galaxyzoo.org.s3.amazonaws.com/subjects/standard/goods_full_s_3678_standard.jpghttp://zoo-hst.s3.amazonaws.com/90107822.jpg
AHZ40008l690107830goods_shallow53.0209747-27.7070296GOODS-S0.5589320.20220681031.0445431.5890.6070.6510.4034731487250.3343458489070.6677925536090.65000000596False0.1410.1530.3995268543750.1352074494910.4686541541930.152999997139False0.2520.197False135124.4990.40.40.60.655.00.00.01.01.033.00.00.01.01.033.01.01.00.00.00.00.00.00.033.00.1980.190.8020.81101100.030.0480.0370.7350.7440.2170.2198382.030.050.0020.050.0530.050.0530.150.1580.50.5250.20.210.00.02019.030.50.50.00.00.50.522.00.00.00.00.00.00.000.00.00.00.00.00.00.00.00.00.00.00.00.000.00.7370.7370.2630.2631919.00.6670.6670.3330.3331212.00.50.50.50.588.00.00.00.2730.2730.7270.7270.00.01111.00.0710.0710.2860.2860.4290.4290.0710.0710.00.00.1430.1431414.00.2310.2310.7690.7691313.00.3850.3850.6150.6151313.0AGZ00082gi1458hubble53.0209225-27.70707910.5589321.8294903983GOODS-S-FULLDEPTH1.04040.00.5750.5750.342333171660.1444391679540.4655930270460.465593027046False0.2250.2250.457666825360.3344069699740.6555608290660.334406969974False0.20.2False4040.00.750.750.250.2544.00.00.01.01.011.01.01.00.00.011.00.00.01.01.00.00.00.00.011.00.406250.406250.593750.593753232.00.04347830.04347830.6521740.6521740.3043480.3043482323.00.00.00.00.00.07692310.07692310.00.00.3846150.3846150.6923080.6923080.00.01313.00.00.00.00.01.01.033.01.01.00.00.00.00.011.00.00.00.00.00.00.00.00.00.00.01.01.011.00.5555560.5555560.4444440.44444499.00.750.750.250.2544.00.3333330.3333330.6666670.66666733.00.00.00.00.01.01.00.00.022.00.20.20.40.40.00.00.40.40.00.00.00.055.00.3333330.3333330.6666670.66666733.00.3333330.3333330.6666670.66666733.0http://www.galaxyzoo.org.s3.amazonaws.com/subjects/standard/goods_full_s_1458_standard.jpghttp://zoo-hst.s3.amazonaws.com/90107830.jpg
AHZ40008ol90040618goods_shallow53.2331453-27.8200641GOODS-S0.83200001716618.60821375633.09592.00.50.5520.142837342104nannan0.552000001073False0.1560.1720.58116266481nannan0.172000005841False0.3440.276False3229.00.00.01.01.022.00.00.01.01.022.00.50.50.50.522.00.00.00.00.00.50.50.50.522.00.0950.0950.9050.9052121.00.00.01.01.00.00.01616.00.00.00.00.01.01.00.00.00.00.00.00.00.00.022.00.00.00.00.00.00.000.00.00.00.00.01.01.011.01.01.00.00.00.00.00.00.00.00.00.00.011.00.60.60.40.455.00.00.00.00.000.00.00.00.00.000.00.00.00.00.00.00.00.00.000.00.00.00.00.00.00.00.00.00.00.01.01.033.00.6670.6670.3330.33333.01.01.00.00.033.0AGZ000862y28302hubble53.2330661-27.82008210.83200001716625.0824759553GOODS-S-FULLDEPTH0.04141.00.4390240.4390240.01278658435950.1519408085440.1519408085440.0127865843595False0.2195120.2195120.6457499988260.5065957746410.5065957746410.645749998826False0.3414630.341463False4141.00.00.01.01.033.00.00.01.01.033.00.00.01.01.033.00.00.00.3333330.3333330.6666670.6666670.00.033.00.1851850.1851850.8148150.8148152727.00.3333330.3333330.6666670.6666670.00.01818.00.00.00.00.00.20.20.40.40.80.80.00.00.00.055.00.00.00.00.00.00.000.00.00.00.00.00.00.000.00.00.00.00.00.00.00.00.00.00.00.00.000.00.6666670.6666670.3333330.33333399.00.750.750.250.2544.01.01.00.00.033.00.00.00.00.00.250.250.750.7544.00.3333330.3333330.00.00.00.00.00.00.3333330.3333330.3333330.33333366.00.50.50.50.566.00.6666670.6666670.3333330.33333366.0http://www.galaxyzoo.org.s3.amazonaws.com/subjects/standard/goods_full_s_28302_standard.jpghttp://zoo-hst.s3.amazonaws.com/90040618.jpg
AHZ40008om90042648goods_shallow53.0423755-27.7261546GOODS-S1.0199999809319.43038266123.09493.0140.6550.6780.133892687829nannan0.677999995649False0.1030.1070.651107308594nannan0.107000000775False0.2410.215False2928.0140.00.01.01.011.01.01.00.00.011.00.00.01.01.011.00.00.01.01.00.00.00.00.011.00.3640.3640.6360.6362222.00.7890.7890.2110.2110.00.01919.00.00.00.00.00.00.00.00.00.50.50.50.50.00.088.00.00.00.00.00.00.000.00.00.00.00.00.00.000.00.00.00.00.00.00.00.00.00.00.00.00.000.00.6670.6670.3330.33333.01.01.00.00.011.00.00.01.01.011.01.01.00.00.00.00.00.00.011.00.00.00.50.50.00.00.00.00.00.00.50.522.01.01.00.00.022.00.50.50.50.522.0AGZ00082q53392hubble53.0423296-27.72620831.0199999809322.0700653643GOODS-S-FULLDEPTH3.04039.95310.6250.624560.1195680735380.09805113188110.5916869441230.624559745193False0.20.2002350.7052264722320.2331076016470.7267434138890.200234800577False0.1750.175205False4039.95310.00.01.01.044.00.00.01.01.044.00.00.01.01.044.00.00.00.750.750.250.250.00.044.00.303030.3034620.696970.6965383332.95310.960.9599250.040.04007520.00.02524.95310.00.00.00.00.00.00.00.00.50.50.60.60.00.01010.00.00.00.00.00.00.000.00.00.00.00.00.00.000.00.00.00.00.00.00.00.00.00.00.00.00.000.00.50.50.50.588.00.00.01.01.044.00.00.00.00.000.00.00.01.01.00.00.00.00.044.00.00.00.00.01.01.00.00.00.00.00.00.044.00.250.250.750.7544.00.00.01.01.044.0http://www.galaxyzoo.org.s3.amazonaws.com/subjects/standard/goods_full_s_3392_standard.jpghttp://zoo-hst.s3.amazonaws.com/90042648.jpg

In [61]:
np.ma.mean(gdata[smooth_to_int]['Z_BEST_2'],mask=(gdata[(gdata[smooth_to_int]['Z_BEST_2']>3)]))


---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
<ipython-input-61-191e9548f806> in <module>()
----> 1 np.ma.mean(gdata[smooth_to_int]['Z_BEST_2'],mask=(gdata[(gdata[smooth_to_int]['Z_BEST_2']>3)]))

/usr/local/lib/python2.7/dist-packages/numpy/ma/core.pyc in __call__(self, a, *args, **params)
   6285         method = getattr(a, method_name, None)
   6286         if method is not None:
-> 6287             return method(*args, **params)
   6288         # Still here ? Then a is not a MaskedArray
   6289         method = getattr(MaskedArray, method_name, None)

TypeError: mean() got an unexpected keyword argument 'mask'

In [ ]: