cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Try the Materials Informatics Toolkit, which is designed to easily handle SMILES data. This and other helpful add-ins are available in the JMP® Marketplace
%3CLINGO-SUB%20id%3D%22lingo-sub-786162%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%E5%A6%82%E4%BD%95%E5%9C%A8%E4%B8%8D%E8%BF%9B%E8%A1%8C%E8%AF%84%E4%BC%B0%E7%9A%84%E6%83%85%E5%86%B5%E4%B8%8B%E5%B0%86%E8%A1%A8%E8%BE%BE%E5%BC%8F%E4%BF%9D%E5%AD%98%E5%9C%A8%E5%8F%98%E9%87%8F%E4%B8%AD%EF%BC%9F%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-786162%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%E5%9C%A8%E5%A4%84%E7%90%86%E4%B8%80%E4%B8%AA%E5%A4%A7%E8%84%9A%E6%9C%AC%E6%97%B6%EF%BC%8C%E6%88%91%E6%B3%A8%E6%84%8F%E5%88%B0%E4%B8%80%E4%BA%9B%E6%9C%89%E5%85%B3%E8%A1%A8%E8%BE%BE%E5%BC%8F%E7%9A%84%E6%9C%89%E8%B6%A3%E8%A1%8C%E4%B8%BA%E3%80%82%3C%2FP%3E%3CP%3E%20%3C%2FP%3E%3CP%3E%E8%80%83%E8%99%91%E4%BB%A5%E4%B8%8B%E4%B8%80%E6%AE%B5%20jsl%20%E4%BB%A3%E7%A0%81%EF%BC%9A%3C%2FP%3E%3CP%3E%20%3C%2FP%3E%3CPRE%3E%3CCODE%20class%3D%22%20language-jsl%22%3E%3CFONT%20color%3D%22%23339966%22%3E%2F%2F%20Create%20a%20namespace%20for%20cleanliness%3C%2FFONT%3E%0Ans%20%3D%20New%20Namespace(%22ns%22)%3B%0A%0A%3CFONT%20color%3D%22%23339966%22%3E%2F%2F%20Make%20an%20example%20data%20table%20dt%3C%2FFONT%3E%0Ans%3Adt%20%3D%20%3CFONT%20color%3D%22%233366FF%22%3ENew%20Table%3C%2FFONT%3E(%22window%22%2C%20%0A%09%09%09%09%3CFONT%20color%3D%22%233366FF%22%3ENew%20Column%3C%2FFONT%3E(%22a%22%2C%20set%20values(%5B1%2C2%2C3%5D))%2C%0A%09%09%09%09%3CFONT%20color%3D%22%233366FF%22%3ENew%20Column%3C%2FFONT%3E(%22b%22%2C%20set%20values(%5B1%2C4%2C9%5D))%0A)%3B%0A%0A%3CFONT%20color%3D%22%23339966%22%3E%2F%2F%201.%20Make%20an%20expression%20gr_exp1%20containing%20the%20graph%20builder%20instructions%3C%2FFONT%3E%0Ans%3Agr_exp1%20%3D%20%3CFONT%20color%3D%22%233366FF%22%3Eexpr%3C%2FFONT%3E(ns%3Agr%20%3D%20ns%3Adt%20%26lt%3B%26lt%3B%20%3CFONT%20color%3D%22%230000FF%22%3EGraph%20Builder%3C%2FFONT%3E(%0A%09%09%09%09%09%09Show%20Control%20Panel(%200%20)%2C%0A%09%09%09%09%09%09Variables(%20X(%20%3Aa%20)%2C%20Y(%20%3CLI-EMOJI%20id%3D%22lia_face-with-tongue%22%20title%3D%22%3Acara_con_la_lengua_fuera%3A%22%3E%3C%2FLI-EMOJI%3E%20)%20)%2C%0A%09%09%09%09%09%09Elements(%20Points(%20X%2C%20Y%2C%20Legend(%208%20)%20)%2C%20Smoother(%20X%2C%20Y%2C%20Legend(%209%20)%20)%20))%3B%0A%09%09%09%09)%3B%3CBR%20%2F%3E%3CFONT%20color%3D%22%23339966%22%3E%2F%2F%20Running%20the%20expression%20will%20build%20the%20graph%20(as%20expected)%0A%3CFONT%20color%3D%22%23000000%22%3Ens%3Agr_exp1%3B%3C%2FFONT%3E%3CBR%20%2F%3E%09%09%09%09%0A%2F%2F%202.%20Make%20a%20function%20f1%20that%20saves%20the%20graph%20builder%20instructions%20into%20an%20expression%20gr_exp2%3C%2FFONT%3E%0Ans%3Af1%20%3D%20%3CFONT%20color%3D%22%233366FF%22%3Efunction%3C%2FFONT%3E(%7B%7D%2C%7BDefault%20Local%7D%2C%0A%09ns%3Agr_exp2%20%3D%20%3CFONT%20color%3D%22%233366FF%22%3Eexpr%3C%2FFONT%3E(ns%3Agr%20%3D%20ns%3Adt%20%26lt%3B%26lt%3B%20%3CFONT%20color%3D%22%230000FF%22%3EGraph%20Builder%3C%2FFONT%3E(%0A%09%09%09%09%09%09Show%20Control%20Panel(%200%20)%2C%0A%09%09%09%09%09%09Variables(%20X(%20%3Aa%20)%2C%20Y(%20%3CLI-EMOJI%20id%3D%22lia_face-with-tongue%22%20title%3D%22%3Acara_con_la_lengua_fuera%3A%22%3E%3C%2FLI-EMOJI%3E%20)%20)%2C%0A%09%09%09%09%09%09Elements(%20Points(%20X%2C%20Y%2C%20Legend(%208%20)%20)%2C%20Smoother(%20X%2C%20Y%2C%20Legend(%209%20)%20)%20))%3B%0A%09)%3B%0A)%3B%0A%3CFONT%20color%3D%22%23339966%22%3E%2F%2F%20When%20one%20runs%20the%20function%2C%20the%20graph%20will%20be%20displayed%2C%20though%20only%20saving%20the%20%3CBR%20%2F%3E%2F%2F%20expression%20into%20a%20variable%20is%20desired.%3C%2FFONT%3E%0Ans%3Af1%3B%3C%2FCODE%3E%3C%2FPRE%3E%3CP%3E%E7%94%B1%E4%BA%8E%E5%AF%B9%E4%BA%8E%E6%AD%A4%E8%84%9A%E6%9C%AC%EF%BC%8C%E6%88%91%E5%8F%AA%E6%83%B3%E5%B0%86%E5%9B%BE%E8%A1%A8%E4%BF%9D%E5%AD%98%E4%B8%BA%E8%A1%A8%E8%BE%BE%E5%BC%8F%EF%BC%88%E7%A8%8D%E5%90%8E%E8%BF%9B%E8%A1%8C%E8%AF%84%E4%BC%B0%EF%BC%89%EF%BC%8C%E5%9B%A0%E6%AD%A4%E6%88%91%E4%B8%8D%E5%B8%8C%E6%9C%9B%E5%AE%83%E5%BC%B9%E5%87%BA%E3%80%82%E7%BB%8F%E8%BF%87%E5%8F%8D%E5%A4%8D%E5%B0%9D%E8%AF%95%E5%90%8E%EF%BC%8C%E6%88%91%E6%B3%A8%E6%84%8F%E5%88%B0%E5%B0%86%E8%A1%A8%E8%BE%BE%E5%BC%8F%E5%B5%8C%E5%A5%97%E5%9C%A8%E5%8F%A6%E4%B8%80%E4%B8%AA%E8%A1%A8%E8%BE%BE%E5%BC%8F%E4%B8%AD%E5%8F%AF%E4%BB%A5%E8%A7%A3%E5%86%B3%E9%97%AE%E9%A2%98%EF%BC%9A%3C%2FP%3E%3CP%3E%20%3C%2FP%3E%3CPRE%3E%3CCODE%20class%3D%22%20language-jsl%22%3Ens%3Af2%20%3D%20%3CFONT%20color%3D%22%233366FF%22%3Efunction%3C%2FFONT%3E(%7B%7D%2C%7BDefault%20Local%7D%2C%0A%09ns%3Agr_exp2%20%3D%20%3CFONT%20color%3D%22%233366FF%22%3Eexpr%3C%2FFONT%3E(%3CFONT%20color%3D%22%233366FF%22%3Eexpr%3C%2FFONT%3E(ns%3Agr%20%3D%20ns%3Adt%20%26lt%3B%26lt%3B%20Graph%20Builder(%0A%09%09%09%09%09%09Show%20Control%20Panel(%200%20)%2C%0A%09%09%09%09%09%09Variables(%20X(%20%3Aa%20)%2C%20Y(%20%3CLI-EMOJI%20id%3D%22lia_face-with-tongue%22%20title%3D%22%3Acara_con_la_lengua_fuera%3A%22%3E%3C%2FLI-EMOJI%3E%20)%20)%2C%0A%09%09%09%09%09%09Elements(%20Points(%20X%2C%20Y%2C%20Legend(%208%20)%20)%2C%20Smoother(%20X%2C%20Y%2C%20Legend(%209%20)%20)%20))%3B%0A%09))%3B%0A)%3B%3CBR%20%2F%3E%3CFONT%20color%3D%22%23339966%22%3E%2F%2F%20Now%20no%20graph%20is%20displayed%20when%20running%20the%20function%2C%20and%20the%20expression%20is%20saved!%3C%2FFONT%3E%3CBR%20%2F%3Ens%3Af2%3B%3CBR%20%2F%3E%3C%2FCODE%3E%3C%2FPRE%3E%3CP%3E%E8%BF%99%E8%A7%A3%E5%86%B3%E4%BA%86%E6%88%91%E7%9A%84%E9%97%AE%E9%A2%98%E3%80%82%E4%BD%86%E6%98%AF%EF%BC%8C%E8%80%83%E8%99%91%E5%88%B0%E6%88%91%E7%9A%84%E8%84%9A%E6%9C%AC%E7%9A%84%E7%BB%93%E6%9E%84%EF%BC%8C%E6%88%91%E5%AE%9E%E9%99%85%E4%B8%8A%E9%9C%80%E8%A6%81%E4%BB%8E%E5%8F%A6%E4%B8%80%E4%B8%AA%E5%87%BD%E6%95%B0%EF%BC%88%E4%BE%8B%E5%A6%82%20f3%EF%BC%89%E8%B0%83%E7%94%A8%E5%87%BD%E6%95%B0%20f2%EF%BC%9A%3C%2FP%3E%3CPRE%3E%3CCODE%20class%3D%22%20language-jsl%22%3E%3CFONT%20color%3D%22%23339966%22%3E%2F%2F%204.%20Now%20make%20a%20function%20f3%20that%20calls%20f2%20(with%20the%20idea%20of%20simply%20saving%20an%20expression)%3C%2FFONT%3E%0Ans%3Af3%20%3D%20%3CFONT%20color%3D%22%233366FF%22%3Efunction%3C%2FFONT%3E(%7B%7D%2C%7BDefault%20Local%7D%2C%0A%09ns%3Af2%3B%0A)%3B%0A%0A%3CFONT%20color%3D%22%23339966%22%3E%2F%2F%20Running%20the%20script%20will%20produce%20a%20graph%20again...%3C%2FFONT%3E%0Ans%3Af3%3B%3C%2FCODE%3E%3C%2FPRE%3E%3CP%3E%E7%84%B6%E5%90%8E%E6%88%91%E6%B3%A8%E6%84%8F%E5%88%B0%E4%BF%AE%E6%94%B9%E5%87%BD%E6%95%B0%20f2%20%E4%BD%BF%E5%85%B6%E5%85%B7%E6%9C%89%E4%B8%89%E9%87%8D%E5%B5%8C%E5%A5%97%E8%A1%A8%E8%BE%BE%E5%BC%8F%E5%8F%AF%E4%BB%A5%E8%A7%A3%E5%86%B3%E8%BF%99%E4%B8%AA%E9%97%AE%E9%A2%98%E2%80%94%E2%80%94%E5%AE%83%E5%B0%86%E5%9B%BE%E5%BD%A2%E4%BF%9D%E5%AD%98%E4%B8%BA%E8%A1%A8%E8%BE%BE%E5%BC%8F%EF%BC%8C%E5%90%8C%E6%97%B6%E6%8A%91%E5%88%B6%E5%85%B6%E8%AF%84%E4%BC%B0%EF%BC%9A%3C%2FP%3E%3CPRE%3E%3CCODE%20class%3D%22%20language-jsl%22%3E%3CFONT%20color%3D%22%23339966%22%3E%2F%2F%20This%20can%20be%20solved%20by%20modifying%20f2%3C%2FFONT%3E%20%0Ans%3Af2%20%3D%20%3CFONT%20color%3D%22%233366FF%22%3Efunction%3C%2FFONT%3E(%7B%7D%2C%7BDefault%20Local%7D%2C%0A%09ns%3Agr_exp2%20%3D%20%3CFONT%20color%3D%22%233366FF%22%3Eexpr%3C%2FFONT%3E(%3CFONT%20color%3D%22%233366FF%22%3Eexpr%3C%2FFONT%3E(%3CFONT%20color%3D%22%233366FF%22%3Eexpr%3C%2FFONT%3E(ns%3Agr%20%3D%20ns%3Adt%20%26lt%3B%26lt%3B%20Graph%20Builder(%0A%09%09%09%09%09%09Show%20Control%20Panel(%200%20)%2C%0A%09%09%09%09%09%09Variables(%20X(%20%3Aa%20)%2C%20Y(%20%3CLI-EMOJI%20id%3D%22lia_face-with-tongue%22%20title%3D%22%3Acara_con_la_lengua_fuera%3A%22%3E%3C%2FLI-EMOJI%3E%20)%20)%2C%0A%09%09%09%09%09%09Elements(%20Points(%20X%2C%20Y%2C%20Legend(%208%20)%20)%2C%20Smoother(%20X%2C%20Y%2C%20Legend(%209%20)%20)%20))%3B%0A%09)))%3B%0A)%3B%0A%0A%3CFONT%20color%3D%22%23339966%22%3E%2F%2F%20Running%20f3%20now%20acts%20as%20desired%20(saves%20expression%20and%20suppresses%20evaluation%20of%20graph)%3C%2FFONT%3E%0Ans%3Af3%3B%3C%2FCODE%3E%3C%2FPRE%3E%3CP%3E%E8%99%BD%E7%84%B6%E6%88%91%E5%B7%B2%E7%BB%8F%E8%AE%BE%E6%B3%95%E8%A7%A3%E5%86%B3%E4%BA%86%E8%BF%99%E4%B8%AA%E9%97%AE%E9%A2%98%EF%BC%8C%E4%BD%86%E6%88%91%E7%9A%84%E9%97%AE%E9%A2%98%E6%98%AF%EF%BC%9A%3C%2FP%3E%3CP%3E%20%3C%2FP%3E%3CP%3E%E6%88%91%E5%A6%82%E4%BD%95%EF%BC%88%E6%AD%A3%E7%A1%AE%E5%9C%B0%EF%BC%89%E5%88%9B%E5%BB%BA%E4%B8%80%E4%B8%AA%E5%87%BD%E6%95%B0%EF%BC%8C%E5%9C%A8%E8%B0%83%E7%94%A8%E5%AE%83%E6%97%B6%EF%BC%8C%E5%B0%86%E8%A1%A8%E8%BE%BE%E5%BC%8F%E4%BF%9D%E5%AD%98%E5%88%B0%E5%8F%98%E9%87%8F%E4%B8%AD%3CSTRONG%3E%E8%80%8C%E4%B8%8D%3C%2FSTRONG%3E%E8%AF%84%E4%BC%B0%E8%A1%A8%E8%BE%BE%E5%BC%8F%EF%BC%9F%3C%2FP%3E%3CP%3E%20%3C%2FP%3E%3CP%3E%E6%88%91%E6%AD%A3%E5%9C%A8%E4%BD%BF%E7%94%A8%20JMP%20Pro%2018.0%E3%80%82%E4%BB%BB%E4%BD%95%E5%B8%AE%E5%8A%A9%E6%88%96%E8%AF%84%E8%AE%BA%E9%83%BD%E9%9D%9E%E5%B8%B8%E6%84%9F%E8%B0%A2%E3%80%82%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-LABS%20id%3D%22lingo-labs-786162%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CLINGO-LABEL%3E%E8%87%AA%E5%8A%A8%E5%8C%96%E5%92%8C%E8%84%9A%E6%9C%AC%3C%2FLINGO-LABEL%3E%3C%2FLINGO-LABS%3E%3CLINGO-SUB%20id%3D%22lingo-sub-786229%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%E5%9B%9E%E5%A4%8D%EF%BC%9A%E5%A6%82%E4%BD%95%E5%9C%A8%E4%B8%8D%E8%BF%9B%E8%A1%8C%E8%AF%84%E4%BC%B0%E7%9A%84%E6%83%85%E5%86%B5%E4%B8%8B%E5%B0%86%E8%A1%A8%E8%BE%BE%E5%BC%8F%E4%BF%9D%E5%AD%98%E5%9C%A8%E5%8F%98%E9%87%8F%E4%B8%AD%EF%BC%9F%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-786229%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%3CA%20href%3D%22https%3A%2F%2Fwww.jmp.com%2Fsupport%2Fhelp%2Fen%2F18.0%2F%23page%2Fjmp%2Fexpression-functions.shtml%3Fos%3Dwin%26amp%3Bsource%3Dapplication%23ww4993368%22%20target%3D%22_blank%22%20rel%3D%22noopener%20noreferrer%22%3EName%20Expr()%3C%2FA%3E%E5%8F%AF%E8%83%BD%E6%98%AF%E6%82%A8%E6%AD%A3%E5%9C%A8%E5%AF%BB%E6%89%BE%E7%9A%84%E9%80%89%E9%A1%B9%E4%B9%8B%E4%B8%80%3C%2FP%3E%0A%3CP%3E%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-inline%22%20image-alt%3D%22jthi_0-1724782668368.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22jthi_0-1724782668368.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22jthi_0-1724782668368.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22jthi_0-1724782668368.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cspan%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22jthi_0-1724782668368.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.jmp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F67579i3595B743686DF801%2Fimage-size%2Fmedium%3Fv%3Dv2%26amp%3Bpx%3D400%22%20role%3D%22button%22%20title%3D%22jthi_0-1724782668368.png%22%20alt%3D%22jthi_0-1724782668368.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CA%20href%3D%22https%3A%2F%2Fwww.jmp.com%2Fsupport%2Fhelp%2Fen%2F18.0%2F%23page%2Fjmp%2Fadvanced-expressions-macros-and-lists.shtml%23ww339382%22%20target%3D%22_blank%22%20rel%3D%22noopener%20noreferrer%22%3Ehttps%3A%2F%2Fwww.jmp.com%2Fsupport%2Fhelp%2Fen%2F18.0%2F%23page%2Fjmp%2Fadvanced-expressions-macros-and-lists.shtml%23ww339382%3C%2FA%3E%E5%8F%AF%E8%83%BD%E5%80%BC%E5%BE%97%E4%B8%80%E8%AF%BB%E3%80%82%E6%AD%A4%E5%A4%96%E8%BF%98%E6%9C%89%3CA%20href%3D%22https%3A%2F%2Fcommunity.jmp.com%2Ft5%2FJMPer-Cable%2FExpression-Handling-Functions-Part-I-Unraveling-the-Expr%2Fm-p%2F28963%23U28963%22%20class%3D%22lia-mention-container-editor-message%20lia-img-icon-blog-thread%20lia-fa-icon%20lia-fa-blog%20lia-fa-thread%20lia-fa%22%20target%3D%22_blank%22%3E%E8%A1%A8%E8%BE%BE%E5%BC%8F%E5%A4%84%E7%90%86%E5%87%BD%E6%95%B0%EF%BC%9A%E7%AC%AC%E4%B8%80%E9%83%A8%E5%88%86%20-%20%E8%A7%A3%E5%BC%80%20Expr()%E3%80%81NameExpr()%E3%80%81Eval()%20%E7%AD%89%E9%9A%BE%E9%A2%98%3C%2FA%3E%EF%BC%88%E6%8D%AE%E6%88%91%E6%89%80%E7%9F%A5%E6%B2%A1%E6%9C%89%E7%AC%AC%E4%BA%8C%E9%83%A8%E5%88%86%EF%BC%89%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-788120%22%20slang%3D%22en-US%22%20mode%3D%22UPDATE%22%3E%E5%9B%9E%E5%A4%8D%EF%BC%9A%E5%A6%82%E4%BD%95%E5%9C%A8%E4%B8%8D%E8%BF%9B%E8%A1%8C%E8%AF%84%E4%BC%B0%E7%9A%84%E6%83%85%E5%86%B5%E4%B8%8B%E5%B0%86%E8%A1%A8%E8%BE%BE%E5%BC%8F%E4%BF%9D%E5%AD%98%E5%9C%A8%E5%8F%98%E9%87%8F%E4%B8%AD%EF%BC%9F%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-788120%22%20slang%3D%22en-US%22%20mode%3D%22UPDATE%22%3E%3CP%3E%E4%BD%A0%E5%A5%BD%3CA%20href%3D%22https%3A%2F%2Fcommunity.jmp.com%2Ft5%2Fuser%2Fviewprofilepage%2Fuser-id%2F38150%22%20target%3D%22_blank%22%3E%40ThomasB%3C%2FA%3E%20%EF%BC%8C%3C%2FP%3E%3CP%3E%E8%AF%B7%E6%B3%A8%E6%84%8F%EF%BC%8C%E5%87%BD%E6%95%B0%E7%9A%84%E6%9C%80%E5%90%8E%E4%B8%80%E4%B8%AA%E8%A1%A8%E8%BE%BE%E5%BC%8F%E4%BD%9C%E4%B8%BA%E8%BF%94%E5%9B%9E%E5%80%BC%E3%80%82%3CBR%20%2F%3E%E5%A6%82%E6%9E%9C%E6%82%A8%E5%8F%AA%E6%83%B3%E5%88%86%E9%85%8D%E8%A1%A8%E8%BE%BE%E5%BC%8F%E8%80%8C%E4%B8%8D%E2%80%9C%E8%BF%94%E5%9B%9E%E2%80%9D%E5%AE%83%EF%BC%8C%E8%AF%B7%E6%B7%BB%E5%8A%A0%E4%B8%80%E4%B8%AA%E8%99%9A%E6%8B%9F%E8%BF%94%E5%9B%9E%E5%80%BC%EF%BC%9A%3C%2FP%3E%3CP%3E%20%3C%2FP%3E%3CPRE%3E%3CCODE%20class%3D%22%20language-jsl%22%3Ens%3Af1%20%3D%20function(%7B%7D%2C%7BDefault%20Local%7D%2C%0A%09ns%3Agr_exp2%20%3D%20expr(ns%3Agr%20%3D%20ns%3Adt%20%26lt%3B%26lt%3B%20Graph%20Builder(%0A%09%09%09%09%09%09Show%20Control%20Panel(%200%20)%2C%0A%09%09%09%09%09%09Variables(%20X(%20%3Aa%20)%2C%20Y(%20%20)%20)%2C%0A%09%09%09%09%09%09Elements(%20Points(%20X%2C%20Y%2C%20Legend(%208%20)%20)%2C%20Smoother(%20X%2C%20Y%2C%20Legend(%209%20)%20)%20))%3B%0A%09)%3B%0A%091%3B%0A)%3B%3C%2FCODE%3E%3C%2FPRE%3E%3CP%3E%E6%88%96%E8%80%85%3C%2FP%3E%3CP%3E%20%3C%2FP%3E%3CPRE%3E%3CCODE%20class%3D%22%20language-jsl%22%3Ens%3Af1%20%3D%20function(%7B%7D%2C%7BDefault%20Local%7D%2C%0A%09ns%3Agr_exp2%20%3D%20expr(ns%3Agr%20%3D%20ns%3Adt%20%26lt%3B%26lt%3B%20Graph%20Builder(%0A%09%09%09%09%09%09Show%20Control%20Panel(%200%20)%2C%0A%09%09%09%09%09%09Variables(%20X(%20%3Aa%20)%2C%20Y(%20%20)%20)%2C%0A%09%09%09%09%09%09Elements(%20Points(%20X%2C%20Y%2C%20Legend(%208%20)%20)%2C%20Smoother(%20X%2C%20Y%2C%20Legend(%209%20)%20)%20))%3B%0A%09)%3B%0A%09return(1)%3B%0A)%3B%3C%2FCODE%3E%3C%2FPRE%3E%3CP%3E%20%3C%2FP%3E%3CP%3E%20%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-789644%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%E5%9B%9E%E5%A4%8D%EF%BC%9A%E5%A6%82%E4%BD%95%E5%9C%A8%E4%B8%8D%E8%BF%9B%E8%A1%8C%E8%AF%84%E4%BC%B0%E7%9A%84%E6%83%85%E5%86%B5%E4%B8%8B%E5%B0%86%E8%A1%A8%E8%BE%BE%E5%BC%8F%E4%BF%9D%E5%AD%98%E5%9C%A8%E5%8F%98%E9%87%8F%E4%B8%AD%EF%BC%9F%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-789644%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%E8%B0%A2%E8%B0%A2%E4%BD%A0%E7%9A%84%E5%9B%9E%E5%A4%8D%E5%92%8C%E9%93%BE%E6%8E%A5%EF%BC%8CJarmo%EF%BC%8C%E5%AE%83%E4%BB%AC%E4%B9%9F%E9%9D%9E%E5%B8%B8%E6%9C%89%E5%B8%AE%E5%8A%A9%E3%80%82%3C%2FP%3E%3C%2FLINGO-BODY%3E
Choose Language Hide Translation Bar
ThomasB
Level II

how to save expressions in a variable without evaluating?

While working on a big script, I noticed some interesting behavior regarding expressions.

 

Consider the following piece of jsl code:

 

// Create a namespace for cleanliness
ns = New Namespace("ns");

// Make an example data table dt
ns:dt = New Table("window", 
				New Column("a", set values([1,2,3])),
				New Column("b", set values([1,4,9]))
);

// 1. Make an expression gr_exp1 containing the graph builder instructions
ns:gr_exp1 = expr(ns:gr = ns:dt << Graph Builder(
						Show Control Panel( 0 ),
						Variables( X( :a ), Y(  ) ),
						Elements( Points( X, Y, Legend( 8 ) ), Smoother( X, Y, Legend( 9 ) ) ));
				);
// Running the expression will build the graph (as expected) ns:gr_exp1;
// 2. Make a function f1 that saves the graph builder instructions into an expression gr_exp2
ns:f1 = function({},{Default Local}, ns:gr_exp2 = expr(ns:gr = ns:dt << Graph Builder( Show Control Panel( 0 ), Variables( X( :a ), Y( ) ), Elements( Points( X, Y, Legend( 8 ) ), Smoother( X, Y, Legend( 9 ) ) )); ); ); // When one runs the function, the graph will be displayed, though only saving the
// expression into a variable is desired.
ns:f1;

Since for this script I just wanted to save the graph as an expression (and evaluate later), I did not want it to pop-up. After some trial and error, I noticed that nesting the expression in another expression solved the problem:

 

ns:f2 = function({},{Default Local},
	ns:gr_exp2 = expr(expr(ns:gr = ns:dt << Graph Builder(
						Show Control Panel( 0 ),
						Variables( X( :a ), Y(  ) ),
						Elements( Points( X, Y, Legend( 8 ) ), Smoother( X, Y, Legend( 9 ) ) ));
	));
);
// Now no graph is displayed when running the function, and the expression is saved!
ns:f2;

That solved my issue. But, given the structure of my script, I actually needed to call the function f2 from another function, say f3:

// 4. Now make a function f3 that calls f2 (with the idea of simply saving an expression)
ns:f3 = function({},{Default Local},
	ns:f2;
);

// Running the script will produce a graph again...
ns:f3;

Then I noticed that modifying the function f2 to have a triple nested expression solved the issue - it saves the graph as an expression, while suppressing its evaluation:

// This can be solved by modifying f2 
ns:f2 = function({},{Default Local},
	ns:gr_exp2 = expr(expr(expr(ns:gr = ns:dt << Graph Builder(
						Show Control Panel( 0 ),
						Variables( X( :a ), Y(  ) ),
						Elements( Points( X, Y, Legend( 8 ) ), Smoother( X, Y, Legend( 9 ) ) ));
	)));
);

// Running f3 now acts as desired (saves expression and suppresses evaluation of graph)
ns:f3;

While I have managed to navigate through this issue, my question is:

 

How do I (correctly) make a function that, upon calling it, saves the expression into a variable without evaluating the expression? 

 

I'm using JMP Pro 18.0. Any help or comments are appreciated.

1 ACCEPTED SOLUTION

Accepted Solutions
hogi
Level XII

Re: how to save expressions in a variable without evaluating?

Hi @ThomasB ,

please note that the last expression of a function is used as the return value.
If you just want to assign the expression without "returning" it, please add a dummy return value:

 

ns:f1 = function({},{Default Local},
	ns:gr_exp2 = expr(ns:gr = ns:dt << Graph Builder(
						Show Control Panel( 0 ),
						Variables( X( :a ), Y(  ) ),
						Elements( Points( X, Y, Legend( 8 ) ), Smoother( X, Y, Legend( 9 ) ) ));
	);
	1;
);

or 

 

ns:f1 = function({},{Default Local},
	ns:gr_exp2 = expr(ns:gr = ns:dt << Graph Builder(
						Show Control Panel( 0 ),
						Variables( X( :a ), Y(  ) ),
						Elements( Points( X, Y, Legend( 8 ) ), Smoother( X, Y, Legend( 9 ) ) ));
	);
	return(1);
);

 

 

View solution in original post

3 REPLIES 3
jthi
Super User

Re: how to save expressions in a variable without evaluating?

hogi
Level XII

Re: how to save expressions in a variable without evaluating?

Hi @ThomasB ,

please note that the last expression of a function is used as the return value.
If you just want to assign the expression without "returning" it, please add a dummy return value:

 

ns:f1 = function({},{Default Local},
	ns:gr_exp2 = expr(ns:gr = ns:dt << Graph Builder(
						Show Control Panel( 0 ),
						Variables( X( :a ), Y(  ) ),
						Elements( Points( X, Y, Legend( 8 ) ), Smoother( X, Y, Legend( 9 ) ) ));
	);
	1;
);

or 

 

ns:f1 = function({},{Default Local},
	ns:gr_exp2 = expr(ns:gr = ns:dt << Graph Builder(
						Show Control Panel( 0 ),
						Variables( X( :a ), Y(  ) ),
						Elements( Points( X, Y, Legend( 8 ) ), Smoother( X, Y, Legend( 9 ) ) ));
	);
	return(1);
);

 

 

ThomasB
Level II

Re: how to save expressions in a variable without evaluating?

Thank you for your reply and the link, Jarmo, they are also very helpful.