JMP基本绘图

Graph Builder(
    Size( 1224, 921 ),
    Variables(
        X( :SPLIT_1 ),
        Y( :WAT_M0_BV_ND_PW_VALUE ),
        Color( :SPLIT_1 )
    ),
    Elements(
        Box Plot( X( 1 ), Y, Legend( 5 ) ),
        Points( X( 1 ), Y, Legend( 6 ) ),
        Line Of Fit(
            X( 1 ),
            Y,
            Legend( 7 ),
            Confidence of Fit( 0 ),
            F Test( 1 ),
            Means and Std Devs( 1 )
        )
    ),
    SendToReport(
        Dispatch(
            {},
            "SPLIT_1",
            ScaleBox,
            {Label Row(
                1,
                {Automatic Font Size( 0 ), Set Font Size( 16 ),
                Set Font Style( "粗体" )}
            ), Label Row(
                2,
                {Automatic Font Size( 0 ), Set Font Size( 26 ),
                Set Font Style( "粗体" )}
            )}
        ),
        Dispatch(
            {},
            "WAT_M0_BV_ND_PW_VALUE",
            ScaleBox,
            {Label Row( {Set Font Size( 20 ), Set Font Style( "粗体" )} )}
        ),
        Dispatch(
            {},
            "graph title",
            TextEditBox,
            {Set Font Size( 20 ), Set Text( "WAT_M0_BV_ND_PW_VALUE" )}
        ),
        Dispatch(
            {},
            "Y title",
            TextEditBox,
            {Set Font Size( 20 ), Set Font Style( "粗体" )}
        ),
        Dispatch(
            {},
            "Graph Builder",
            FrameBox,
            {DispatchSeg( LabelSeg( 1 ), {Font( "微软雅黑", 14, "粗体" )} ),
            DispatchSeg( TextSeg( 1 ), {Font( "微软雅黑", 16, "粗体" )} )}
        )
    )
);