cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Check out the JMP® Marketplace featured Capability Explorer add-in
%3CLINGO-SUB%20id%3D%22lingo-sub-798498%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%E5%9C%A8%E4%BB%AA%E8%A1%A8%E6%9D%BF%E7%9A%84%E7%AC%AC%E4%B8%80%E4%B8%AA%E9%80%89%E9%A1%B9%E5%8D%A1%E4%B8%8A%E6%B7%BB%E5%8A%A0%E8%A1%A8%E6%A0%BC%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-798498%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%E6%88%91%E5%8F%AF%E4%BB%A5%E5%9C%A8%E7%AC%AC%E4%B8%80%E4%B8%AA%E9%80%89%E9%A1%B9%E5%8D%A1%E4%B8%AD%E6%B7%BB%E5%8A%A0%E8%A1%A8%E6%A0%BC%E5%90%97%EF%BC%9F%E5%83%8F%E7%A4%BA%E4%BE%8B%E4%B8%80%E6%A0%B7%E3%80%82%3C%2FP%3E%3CPRE%3E%3CCODE%20class%3D%22%20language-jsl%22%3ENames%20Default%20To%20Here(%201%20)%3B%0A%0Adt%20%3D%20Open(%20%22%24SAMPLE_DATA%2FBig%20Class.jmp%22%20)%3B%0A%0A%0A%2F%2F%20Create%20a%20table%20for%20the%20first%20tab%0AtableBox%20%3D%20dt%20%26lt%3B%26lt%3B%20Summary(%0A%20%20%20%20Group(%20%3Asex%20)%2C%0A%20%20%20%20Mean(%20%3Aweight%20)%2C%0A%20%20%20%20Mean(%20%3Aheight%20)%2C%0A%20%20%20%20N%0A)%3B%0A%0Agb_collector%20%3D%20Tab%20Box(%20%22Dashboard%22%2C%0A%20%20%20%20V%20List%20Box(%0A%20%20%20%20%20%20%20%20tableBox%0A%20%20%20%20)%0A%09%0A)%3B%0A%0A%0AFor(%20i%20%3D%201%2C%20i%20%26lt%3B%3D%2020%2C%20i%2B%2B%2C%0A%20%20%20%20%2F%2F%20Column%20box%20for%20plot%20of%20all%20batches%0A%20%20%20%20col1%20%3D%20Col%20Box(%20%22All%20Batches%22%20%7C%7C%20Char(%20i%20)%20)%3B%0A%0A%20%20%20%20%2F%2F%20Create%20the%20first%20Graph%20Builder%20plot%0A%20%20%20%20gb%20%3D%20Expr(%0A%20%20%20%20%20%20%20%20dt%20%26lt%3B%26lt%3B%20Graph%20Builder(%0A%20%20%20%20%20%20%20%20%20%20%20%20invisible%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20Show%20Control%20Panel(%200%20)%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20Variables(%20X(%20%3Aweight%20)%2C%20Y(%20%3Aheight%20)%2C%20Overlay(%20%3Asex%20)%20)%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20Elements(%20Points(%20X%2C%20Y%2C%20Legend(%209%20)%20)%2C%20Line%20Of%20Fit(%20X%2C%20Y%2C%20Legend(%2011%20)%20)%20)%0A%20%20%20%20%20%20%20%20)%0A%20%20%20%20)%3B%0A%20%20%20%20col1%20%26lt%3B%26lt%3B%20Append(%20gb%20)%3B%0A%0A%20%20%20%20%2F%2F%20Create%20column%20boxes%20for%20the%20Graph%20Builder%20plots%0A%20%20%20%20col2%20%3D%20Col%20Box(%20%22Actual%20Data%20%22%20%7C%7C%20Char(%20i%20)%20)%3B%0A%20%20%20%20col3%20%3D%20Col%20Box(%20%22Actual%20%20%22%20%7C%7C%20Char(%20i%20)%20)%3B%0A%0A%20%20%20%20%2F%2F%20Loop%20to%20create%20and%20append%20multiple%20Graph%20Builder%20plots%20to%20col2%20and%20col3%0A%20%20%20%20For(%20j%20%3D%201%2C%20j%20%26lt%3B%3D%202%2C%20j%2B%2B%2C%0A%20%20%20%20%20%20%20%20gbb%20%3D%20Expr(%0A%20%20%20%20%20%20%20%20%20%20%20%20dt%20%26lt%3B%26lt%3B%20Graph%20Builder(%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20invisible%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Show%20Control%20Panel(%200%20)%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Variables(%20X(%20%3Aweight%20)%2C%20Y(%20%3Aheight%20)%2C%20Overlay(%20%3Asex%20)%20)%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Elements(%20Points(%20X%2C%20Y%2C%20Legend(%205%20)%20)%2C%20Line%20Of%20Fit(%20X%2C%20Y%2C%20Legend(%2011%20)%20)%20)%0A%20%20%20%20%20%20%20%20%20%20%20%20)%0A%20%20%20%20%20%20%20%20)%3B%0A%20%20%20%20%20%20%20%20col2%20%26lt%3B%26lt%3B%20Append(%20gbb%20)%3B%0A%0A%20%20%20%20%20%20%20%20gbbb%20%3D%20Expr(%0A%20%20%20%20%20%20%20%20%20%20%20%20dt%20%26lt%3B%26lt%3B%20Graph%20Builder(%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20invisible%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Show%20Control%20Panel(%200%20)%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Variables(%20X(%20%3Aweight%20)%2C%20Y(%20%3Aheight%20)%2C%20Overlay(%20%3Asex%20)%20)%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Elements(%20Points(%20X%2C%20Y%2C%20Legend(%209%20)%20)%2C%20Line%20Of%20Fit(%20X%2C%20Y%2C%20Legend(%2011%20)%20)%20)%0A%20%20%20%20%20%20%20%20%20%20%20%20)%0A%20%20%20%20%20%20%20%20)%3B%0A%20%20%20%20%20%20%20%20col3%20%26lt%3B%26lt%3B%20Append(%20gbbb%20)%3B%0A%20%20%20%20)%3B%0A%0A%20%20%20%20%2F%2F%20Create%20a%20tab%20for%20col1%2C%20col2%2C%20and%20col3%20and%20append%20it%20to%20gb_collector%0A%20%20%20%20tab%20%3D%20Tab%20Page%20Box(%20Char(i)%2C%0A%20%20%20%20%20%20%20%20V%20List%20Box(%0A%20%20%20%20%20%20%20%20%20%20%20%20col1%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20H%20List%20Box(%20col2%2C%20col3%20)%20%2F%2F%20Placing%20the%20two%20plots%20next%20to%20each%20other%0A%20%20%20%20%20%20%20%20)%0A%20%20%20%20)%3B%0A%20%20%20%20gb_collector%20%26lt%3B%26lt%3B%20Append(%20tab%20)%3B%0A%0A)%3B%0A%0Agb_collector%20%26lt%3B%26lt%3B%20Dockable(%201%20)%3B%0Agb_collector%20%26lt%3B%26lt%3B%20Set%20Overflow%20Enabled(%201%20)%3B%0A%0Anw%20%3D%20New%20Window(%20%22Dashboard%22%2C%0A%20%20%20%20gb_collector%0A)%3B%3C%2FCODE%3E%3C%2FPRE%3E%3C%2FLINGO-BODY%3E%3CLINGO-LABS%20id%3D%22lingo-labs-798498%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CLINGO-LABEL%3E%E6%95%B0%E6%8D%AE%E6%8E%A2%E7%B4%A2%E4%B8%8E%E5%8F%AF%E8%A7%86%E5%8C%96%3C%2FLINGO-LABEL%3E%3C%2FLINGO-LABS%3E%3CLINGO-SUB%20id%3D%22lingo-sub-798511%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%E5%9B%9E%E5%A4%8D%EF%BC%9A%E5%9C%A8%E4%BB%AA%E8%A1%A8%E6%9D%BF%E7%9A%84%E7%AC%AC%E4%B8%80%E4%B8%AA%E9%80%89%E9%A1%B9%E5%8D%A1%E4%B8%8A%E6%B7%BB%E5%8A%A0%E8%A1%A8%E6%A0%BC%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-798511%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%E6%82%A8%E5%8F%AF%E4%BB%A5%E4%BD%BF%E7%94%A8%E2%80%9C%E6%8F%92%E5%85%A5%E6%A0%87%E7%AD%BE%E6%A1%86%E2%80%9D%E6%9D%A5%E7%A1%AE%E5%AE%9A%E5%BA%94%E5%B0%86%E6%98%BE%E7%A4%BA%E6%A1%86%E6%B7%BB%E5%8A%A0%E5%88%B0%E5%93%AA%E4%B8%AA%E4%BD%8D%E7%BD%AE%3C%2FP%3E%0A%3CP%3E%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-inline%22%20image-alt%3D%22jthi_0-1726214720593.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22jthi_0-1726214720593.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22jthi_0-1726214720593.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cspan%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22jthi_0-1726214720593.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.jmp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F68215iB6F6A83F381E77DC%2Fimage-size%2Fmedium%3Fv%3Dv2%26amp%3Bpx%3D400%22%20role%3D%22button%22%20title%3D%22jthi_0-1726214720593.png%22%20alt%3D%22jthi_0-1726214720593.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%E5%B8%A6%E7%B4%A2%E5%BC%95%3C%2FP%3E%0A%3CPRE%3E%3CCODE%20class%3D%22%20language-jsl%22%3ENames%20Default%20To%20Here(1)%3B%0ANew%20Window(%22Example%22%2C%0A%09tb%20%3D%20Tab%20Box(%0A%09%09Tab%20Page%20Box(%22First%20Tab%22%2C%20Tip(%22First%20Tab%20Tooltip%22)%2C%20Button%20Box(%22Press%20One%22))%2C%0A%09%09Tab%20Page%20Box(%22Second%20Tab%22%2C%20Closeable(1)%2C%20Button%20Box(%22Press%20Two%22))%2C%0A%09%09Tab%20Page%20Box(%22Third%20Tab%22%2C%20Icon(%22Nominal%22)%2C%20Button%20Box(%22Press%20Three%22))%0A%09)%0A)%3B%0AWait(1)%3B%0Atb%20%26lt%3B%26lt%3B%20Insert(1%2C%20Tab%20Page%20Box(Title(%22To%20first%22)%2C%20Button%20Box(%22Press%20Four%22)))%3B%3C%2FCODE%3E%3C%2FPRE%3E%0A%3CP%3E%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-inline%22%20image-alt%3D%22jthi_1-1726214743301.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22jthi_1-1726214743301.png%22%20style%3D%22width%3A%20309px%3B%22%3E%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22jthi_1-1726214743301.png%22%20style%3D%22width%3A%20309px%3B%22%3E%3Cspan%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22jthi_1-1726214743301.png%22%20style%3D%22width%3A%20309px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.jmp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F68216iCDDD084D86CDB729%2Fimage-size%2Fmedium%3Fv%3Dv2%26amp%3Bpx%3D400%22%20role%3D%22button%22%20title%3D%22jthi_1-1726214743301.png%22%20alt%3D%22jthi_1-1726214743301.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%20%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-798513%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%E5%9B%9E%E5%A4%8D%EF%BC%9A%E5%9C%A8%E4%BB%AA%E8%A1%A8%E6%9D%BF%E7%9A%84%E7%AC%AC%E4%B8%80%E4%B8%AA%E9%80%89%E9%A1%B9%E5%8D%A1%E4%B8%8A%E6%B7%BB%E5%8A%A0%E8%A1%A8%E6%A0%BC%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-798513%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%E8%B0%A2%E8%B0%A2%EF%BC%81%E4%BD%86%E9%97%AE%E9%A2%98%E6%98%AF%E6%88%91%E5%9C%A8%E6%A0%87%E7%AD%BE%E4%B8%8A%E6%89%93%E5%8D%B0%E8%A1%A8%E6%A0%BC%E6%97%B6%E9%81%87%E5%88%B0%E4%BA%86%E9%BA%BB%E7%83%A6%E3%80%82%3C%2FP%3E%3CPRE%3E%3CCODE%20class%3D%22%20language-jsl%22%3ENames%20Default%20To%20Here(%201%20)%3B%0A%0Adt%20%3D%20Open(%20%22%24SAMPLE_DATA%2FBig%20Class.jmp%22%20)%3B%0A%0A%0Agb_collector%20%3D%20Tab%20Box()%3B%0A%0A%0AFor(%20i%20%3D%201%2C%20i%20%26lt%3B%3D%2020%2C%20i%2B%2B%2C%0A%20%20%20%20%2F%2F%20Column%20box%20for%20plot%20of%20all%20batches%0A%20%20%20%20col1%20%3D%20Col%20Box(%20%22All%20Batches%22%20%7C%7C%20Char(%20i%20)%20)%3B%0A%0A%20%20%20%20%2F%2F%20Create%20the%20first%20Graph%20Builder%20plot%0A%20%20%20%20gb%20%3D%20Expr(%0A%20%20%20%20%20%20%20%20dt%20%26lt%3B%26lt%3B%20Graph%20Builder(%0A%20%20%20%20%20%20%20%20%20%20%20%20invisible%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20Show%20Control%20Panel(%200%20)%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20Variables(%20X(%20%3Aweight%20)%2C%20Y(%20%3Aheight%20)%2C%20Overlay(%20%3Asex%20)%20)%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20Elements(%20Points(%20X%2C%20Y%2C%20Legend(%209%20)%20)%2C%20Line%20Of%20Fit(%20X%2C%20Y%2C%20Legend(%2011%20)%20)%20)%0A%20%20%20%20%20%20%20%20)%0A%20%20%20%20)%3B%0A%20%20%20%20col1%20%26lt%3B%26lt%3B%20Append(%20gb%20)%3B%0A%0A%20%20%20%20%2F%2F%20Create%20column%20boxes%20for%20the%20Graph%20Builder%20plots%0A%20%20%20%20col2%20%3D%20Col%20Box(%20%22Actual%20Data%20%22%20%7C%7C%20Char(%20i%20)%20)%3B%0A%20%20%20%20col3%20%3D%20Col%20Box(%20%22Actual%20%20%22%20%7C%7C%20Char(%20i%20)%20)%3B%0A%0A%20%20%20%20%2F%2F%20Loop%20to%20create%20and%20append%20multiple%20Graph%20Builder%20plots%20to%20col2%20and%20col3%0A%20%20%20%20For(%20j%20%3D%201%2C%20j%20%26lt%3B%3D%202%2C%20j%2B%2B%2C%0A%20%20%20%20%20%20%20%20gbb%20%3D%20Expr(%0A%20%20%20%20%20%20%20%20%20%20%20%20dt%20%26lt%3B%26lt%3B%20Graph%20Builder(%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20invisible%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Show%20Control%20Panel(%200%20)%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Variables(%20X(%20%3Aweight%20)%2C%20Y(%20%3Aheight%20)%2C%20Overlay(%20%3Asex%20)%20)%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Elements(%20Points(%20X%2C%20Y%2C%20Legend(%205%20)%20)%2C%20Line%20Of%20Fit(%20X%2C%20Y%2C%20Legend(%2011%20)%20)%20)%0A%20%20%20%20%20%20%20%20%20%20%20%20)%0A%20%20%20%20%20%20%20%20)%3B%0A%20%20%20%20%20%20%20%20col2%20%26lt%3B%26lt%3B%20Append(%20gbb%20)%3B%0A%0A%20%20%20%20%20%20%20%20gbbb%20%3D%20Expr(%0A%20%20%20%20%20%20%20%20%20%20%20%20dt%20%26lt%3B%26lt%3B%20Graph%20Builder(%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20invisible%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Show%20Control%20Panel(%200%20)%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Variables(%20X(%20%3Aweight%20)%2C%20Y(%20%3Aheight%20)%2C%20Overlay(%20%3Asex%20)%20)%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Elements(%20Points(%20X%2C%20Y%2C%20Legend(%209%20)%20)%2C%20Line%20Of%20Fit(%20X%2C%20Y%2C%20Legend(%2011%20)%20)%20)%0A%20%20%20%20%20%20%20%20%20%20%20%20)%0A%20%20%20%20%20%20%20%20)%3B%0A%20%20%20%20%20%20%20%20col3%20%26lt%3B%26lt%3B%20Append(%20gbbb%20)%3B%0A%20%20%20%20)%3B%0A%0A%20%20%20%20%2F%2F%20Create%20a%20tab%20for%20col1%2C%20col2%2C%20and%20col3%20and%20append%20it%20to%20gb_collector%0A%20%20%20%20tab%20%3D%20Tab%20Page%20Box(%20Char(i)%2C%0A%20%20%20%20%20%20%20%20V%20List%20Box(%0A%20%20%20%20%20%20%20%20%20%20%20%20col1%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20H%20List%20Box(%20col2%2C%20col3%20)%20%2F%2F%20Placing%20the%20two%20plots%20next%20to%20each%20other%0A%20%20%20%20%20%20%20%20)%0A%20%20%20%20)%3B%0A%20%20%20%20gb_collector%20%26lt%3B%26lt%3B%20Append(%20tab%20)%3B%0A%0A)%3B%0A%0A%0A%2F%2F%20Create%20a%20table%20for%20the%20first%20tab%0AtableBox%20%3D%20Expr(dt%20%26lt%3B%26lt%3B%20Summary(%0A%20%20%20%20Group(%20%3Asex%20)%2C%0A%20%20%20%20Mean(%20%3Aweight%20)%2C%0A%20%20%20%20Mean(%20%3Aheight%20)%2C%0A%20%20%20%20N%0A))%3B%0A%0A%0A%0A%2F%2F%20Create%20the%20%22Results%22%20tab%0AresultsTab%20%3D%20Tab%20Page%20Box(%22Results%22%2C%20tableBox)%3B%0A%0A%2F%2F%20Insert%20the%20%22Results%22%20tab%20at%20the%20first%20position%0Agb_collector%20%26lt%3B%26lt%3B%20Insert(1%2C%20resultsTab)%3B%0A%0A%0Agb_collector%20%26lt%3B%26lt%3B%20Dockable(%201%20)%3B%0Agb_collector%20%26lt%3B%26lt%3B%20Set%20Overflow%20Enabled(%201%20)%3B%0A%0Anw%20%3D%20New%20Window(%20%22Dashboard%22%2C%0A%20%20%20%20gb_collector%0A)%3B%3C%2FCODE%3E%3C%2FPRE%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-798524%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%E5%9B%9E%E5%A4%8D%EF%BC%9A%E5%9C%A8%E4%BB%AA%E8%A1%A8%E6%9D%BF%E7%9A%84%E7%AC%AC%E4%B8%80%E4%B8%AA%E9%80%89%E9%A1%B9%E5%8D%A1%E4%B8%8A%E6%B7%BB%E5%8A%A0%E8%A1%A8%E6%A0%BC%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-798524%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%E4%BE%8B%E5%A6%82%EF%BC%8C%E6%82%A8%E5%8F%AF%E4%BB%A5%E4%BD%BF%E7%94%A8%20get%20as%20report%3C%2FP%3E%0A%3CPRE%3E%3CCODE%20class%3D%22%20language-jsl%22%3ENames%20Default%20To%20Here(1)%3B%0ANew%20Window(%22Example%22%2C%0A%09tb%20%3D%20Tab%20Box(%0A%09%09Tab%20Page%20Box(%22First%20Tab%22%2C%20Tip(%22First%20Tab%20Tooltip%22)%2C%20Button%20Box(%22Press%20One%22))%2C%0A%09%09Tab%20Page%20Box(%22Second%20Tab%22%2C%20Closeable(1)%2C%20Button%20Box(%22Press%20Two%22))%2C%0A%09%09Tab%20Page%20Box(%22Third%20Tab%22%2C%20Icon(%22Nominal%22)%2C%20Button%20Box(%22Press%20Three%22))%0A%09)%0A)%3B%0AWait(1)%3B%0A%0Adt%20%3D%20open(%22%24SAMPLE_DATA%2FBig%20Class.jmp%22)%3B%0A%0Atb%20%26lt%3B%26lt%3B%20Insert(1%2C%20Tab%20Page%20Box(Title(%22To%20first%22)%2C%20%0A%09dt%20%26lt%3B%26lt%3B%20get%20as%20report%0A))%3B%0A%3C%2FCODE%3E%3C%2FPRE%3E%3C%2FLINGO-BODY%3E
Choose Language Hide Translation Bar

adding a table on the firts tab of a dashboard

Can i add in the first tab a table ?  like the example. 

Names Default To Here( 1 );

dt = Open( "$SAMPLE_DATA/Big Class.jmp" );


// Create a table for the first tab
tableBox = dt << Summary(
    Group( :sex ),
    Mean( :weight ),
    Mean( :height ),
    N
);

gb_collector = Tab Box( "Dashboard",
    V List Box(
        tableBox
    )
	
);


For( i = 1, i <= 20, i++,
    // Column box for plot of all batches
    col1 = Col Box( "All Batches" || Char( i ) );

    // Create the first Graph Builder plot
    gb = Expr(
        dt << Graph Builder(
            invisible,
            Show Control Panel( 0 ),
            Variables( X( :weight ), Y( :height ), Overlay( :sex ) ),
            Elements( Points( X, Y, Legend( 9 ) ), Line Of Fit( X, Y, Legend( 11 ) ) )
        )
    );
    col1 << Append( gb );

    // Create column boxes for the Graph Builder plots
    col2 = Col Box( "Actual Data " || Char( i ) );
    col3 = Col Box( "Actual  " || Char( i ) );

    // Loop to create and append multiple Graph Builder plots to col2 and col3
    For( j = 1, j <= 2, j++,
        gbb = Expr(
            dt << Graph Builder(
                invisible,
                Show Control Panel( 0 ),
                Variables( X( :weight ), Y( :height ), Overlay( :sex ) ),
                Elements( Points( X, Y, Legend( 5 ) ), Line Of Fit( X, Y, Legend( 11 ) ) )
            )
        );
        col2 << Append( gbb );

        gbbb = Expr(
            dt << Graph Builder(
                invisible,
                Show Control Panel( 0 ),
                Variables( X( :weight ), Y( :height ), Overlay( :sex ) ),
                Elements( Points( X, Y, Legend( 9 ) ), Line Of Fit( X, Y, Legend( 11 ) ) )
            )
        );
        col3 << Append( gbbb );
    );

    // Create a tab for col1, col2, and col3 and append it to gb_collector
    tab = Tab Page Box( Char(i),
        V List Box(
            col1,
            H List Box( col2, col3 ) // Placing the two plots next to each other
        )
    );
    gb_collector << Append( tab );

);

gb_collector << Dockable( 1 );
gb_collector << Set Overflow Enabled( 1 );

nw = New Window( "Dashboard",
    gb_collector
);
1 ACCEPTED SOLUTION

Accepted Solutions
jthi
Super User

Re: adding a table on the firts tab of a dashboard

You can for example use get as report

Names Default To Here(1);
New Window("Example",
	tb = Tab Box(
		Tab Page Box("First Tab", Tip("First Tab Tooltip"), Button Box("Press One")),
		Tab Page Box("Second Tab", Closeable(1), Button Box("Press Two")),
		Tab Page Box("Third Tab", Icon("Nominal"), Button Box("Press Three"))
	)
);
Wait(1);

dt = open("$SAMPLE_DATA/Big Class.jmp");

tb << Insert(1, Tab Page Box(Title("To first"), 
	dt << get as report
));
-Jarmo

View solution in original post

3 REPLIES 3
jthi
Super User

Re: adding a table on the firts tab of a dashboard

You can use Insert with Tab Box to determine into which position display box should be added

jthi_0-1726214720593.png

With index

Names Default To Here(1);
New Window("Example",
	tb = Tab Box(
		Tab Page Box("First Tab", Tip("First Tab Tooltip"), Button Box("Press One")),
		Tab Page Box("Second Tab", Closeable(1), Button Box("Press Two")),
		Tab Page Box("Third Tab", Icon("Nominal"), Button Box("Press Three"))
	)
);
Wait(1);
tb << Insert(1, Tab Page Box(Title("To first"), Button Box("Press Four")));

jthi_1-1726214743301.png

 

-Jarmo

Re: adding a table on the firts tab of a dashboard

thank you ! but the thing is that i am straggling printing the table on a tab. 

Names Default To Here( 1 );

dt = Open( "$SAMPLE_DATA/Big Class.jmp" );


gb_collector = Tab Box();


For( i = 1, i <= 20, i++,
    // Column box for plot of all batches
    col1 = Col Box( "All Batches" || Char( i ) );

    // Create the first Graph Builder plot
    gb = Expr(
        dt << Graph Builder(
            invisible,
            Show Control Panel( 0 ),
            Variables( X( :weight ), Y( :height ), Overlay( :sex ) ),
            Elements( Points( X, Y, Legend( 9 ) ), Line Of Fit( X, Y, Legend( 11 ) ) )
        )
    );
    col1 << Append( gb );

    // Create column boxes for the Graph Builder plots
    col2 = Col Box( "Actual Data " || Char( i ) );
    col3 = Col Box( "Actual  " || Char( i ) );

    // Loop to create and append multiple Graph Builder plots to col2 and col3
    For( j = 1, j <= 2, j++,
        gbb = Expr(
            dt << Graph Builder(
                invisible,
                Show Control Panel( 0 ),
                Variables( X( :weight ), Y( :height ), Overlay( :sex ) ),
                Elements( Points( X, Y, Legend( 5 ) ), Line Of Fit( X, Y, Legend( 11 ) ) )
            )
        );
        col2 << Append( gbb );

        gbbb = Expr(
            dt << Graph Builder(
                invisible,
                Show Control Panel( 0 ),
                Variables( X( :weight ), Y( :height ), Overlay( :sex ) ),
                Elements( Points( X, Y, Legend( 9 ) ), Line Of Fit( X, Y, Legend( 11 ) ) )
            )
        );
        col3 << Append( gbbb );
    );

    // Create a tab for col1, col2, and col3 and append it to gb_collector
    tab = Tab Page Box( Char(i),
        V List Box(
            col1,
            H List Box( col2, col3 ) // Placing the two plots next to each other
        )
    );
    gb_collector << Append( tab );

);


// Create a table for the first tab
tableBox = Expr(dt << Summary(
    Group( :sex ),
    Mean( :weight ),
    Mean( :height ),
    N
));



// Create the "Results" tab
resultsTab = Tab Page Box("Results", tableBox);

// Insert the "Results" tab at the first position
gb_collector << Insert(1, resultsTab);


gb_collector << Dockable( 1 );
gb_collector << Set Overflow Enabled( 1 );

nw = New Window( "Dashboard",
    gb_collector
);
jthi
Super User

Re: adding a table on the firts tab of a dashboard

You can for example use get as report

Names Default To Here(1);
New Window("Example",
	tb = Tab Box(
		Tab Page Box("First Tab", Tip("First Tab Tooltip"), Button Box("Press One")),
		Tab Page Box("Second Tab", Closeable(1), Button Box("Press Two")),
		Tab Page Box("Third Tab", Icon("Nominal"), Button Box("Press Three"))
	)
);
Wait(1);

dt = open("$SAMPLE_DATA/Big Class.jmp");

tb << Insert(1, Tab Page Box(Title("To first"), 
	dt << get as report
));
-Jarmo