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-786162%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%C2%BFC%C3%B3mo%20guardar%20expresiones%20en%20una%20variable%20sin%20evaluar%3F%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-786162%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EMientras%20trabajaba%20en%20un%20script%20grande%2C%20not%C3%A9%20un%20comportamiento%20interesante%20con%20respecto%20a%20las%20expresiones.%3C%2FP%3E%3CP%3E%20%3C%2FP%3E%3CP%3EConsidere%20el%20siguiente%20fragmento%20de%20c%C3%B3digo%20jsl%3A%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%3EComo%20para%20este%20script%20solo%20quer%C3%ADa%20guardar%20el%20gr%C3%A1fico%20como%20una%20expresi%C3%B3n%20(y%20evaluarlo%20m%C3%A1s%20tarde)%2C%20no%20quer%C3%ADa%20que%20apareciera.%20Despu%C3%A9s%20de%20algunas%20pruebas%20y%20errores%2C%20not%C3%A9%20que%20anidar%20la%20expresi%C3%B3n%20en%20otra%20expresi%C3%B3n%20resolvi%C3%B3%20el%20problema%3A%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%3EEso%20resolvi%C3%B3%20mi%20problema.%20Pero%2C%20dada%20la%20estructura%20de%20mi%20script%2C%20en%20realidad%20necesitaba%20llamar%20a%20la%20funci%C3%B3n%20f2%20desde%20otra%20funci%C3%B3n%2C%20digamos%20f3%3A%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%3ELuego%20not%C3%A9%20que%20modificar%20la%20funci%C3%B3n%20f2%20para%20tener%20una%20expresi%C3%B3n%20triple%20anidada%20resolvi%C3%B3%20el%20problema%3A%20guarda%20el%20gr%C3%A1fico%20como%20una%20expresi%C3%B3n%2C%20mientras%20suprime%20su%20evaluaci%C3%B3n%3A%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%3ESi%20bien%20he%20logrado%20resolver%20este%20problema%2C%20mi%20pregunta%20es%3A%3C%2FP%3E%3CP%3E%20%3C%2FP%3E%3CP%3E%C2%BFC%C3%B3mo%20puedo%20crear%20(correctamente)%20una%20funci%C3%B3n%20que%2C%20al%20llamarla%2C%20guarde%20la%20expresi%C3%B3n%20en%20una%20variable%20%3CSTRONG%3Esin%3C%2FSTRONG%3E%20evaluar%20la%20expresi%C3%B3n%3F%3C%2FP%3E%3CP%3E%20%3C%2FP%3E%3CP%3EEstoy%20usando%20JMP%20Pro%2018.0.%20Agradezco%20cualquier%20ayuda%20o%20comentario.%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%3EAutomatizaci%C3%B3n%20y%20scripting%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%3ERe%3A%20%C2%BFc%C3%B3mo%20guardar%20expresiones%20en%20una%20variable%20sin%20evaluar%3F%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%20podr%C3%ADa%20ser%20una%20de%20las%20opciones%20que%20est%C3%A1s%20buscando%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%20podr%C3%ADa%20ser%20una%20buena%20lectura.%20Tambi%C3%A9n%20%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%3EFunciones%20de%20manejo%20de%20expresiones%3A%20Parte%20I%20-%20Desentra%C3%B1ando%20el%20enigma%20de%20Expr()%2C%20NameExpr()%2C%20Eval()%2C%20...%3C%2FA%3E%20(no%20hay%20una%20parte%202%20que%20yo%20sepa)%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-788120%22%20slang%3D%22en-US%22%20mode%3D%22UPDATE%22%3ERe%3A%20%C2%BFc%C3%B3mo%20guardar%20expresiones%20en%20una%20variable%20sin%20evaluar%3F%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-788120%22%20slang%3D%22en-US%22%20mode%3D%22UPDATE%22%3E%3CP%3EHola%20%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%2C%3C%2FP%3E%3CP%3ETenga%20en%20cuenta%20que%20la%20%C3%BAltima%20expresi%C3%B3n%20de%20una%20funci%C3%B3n%20se%20utiliza%20como%20valor%20de%20retorno.%3CBR%20%2F%3E%20Si%20solo%20desea%20asignar%20la%20expresi%C3%B3n%20sin%20%22devolverla%22%2C%20agregue%20un%20valor%20de%20retorno%20ficticio%3A%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%3Eo%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%3ERe%3A%20%C2%BFc%C3%B3mo%20guardar%20expresiones%20en%20una%20variable%20sin%20evaluar%3F%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-789644%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EGracias%20por%20tu%20respuesta%20y%20el%20enlace%2C%20Jarmo%2C%20tambi%C3%A9n%20son%20muy%20%C3%BAtiles.%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.