I came across this situation where the logistic regression outcome is identical when using weights or frequencies. I find it surprising since this would not be the case for linear regression at all. Weights and frequencies have different meaning as in this link: http://blogs.sas.com/content/iml/2013/09/13/frequencies-vs-weights-in-regression.html 
Does anyone know the reason for the identical outcome? Shouldn’t some parts of the estimation be different by definition?  
Open( "$SAMPLE_DATA/Big Class.jmp" );
New Window("weighs and Freq",
     H List Box(
           Fit Model(
                Freq( :age ),
                Y( :sex ),
                Effects( :weight ),
                Personality( Nominal Logistic ),
                Run( Likelihood Ratio Tests( 1 ), Wald Tests( 1 ), Odds Ratios( 1 ), Confidence Intervals( 1 ) )
           ),
           Fit Model(
                Weight( :age ),
                Y( :sex ),
                Effects( :weight ),
                Personality( Nominal Logistic ),
                Run( Likelihood Ratio Tests( 1 ), Wald Tests( 1 ), Odds Ratios( 1 ), Confidence Intervals( 1 ) )
           )
     )
);