Re: [R] help using SED

2015-12-05 Thread David Winsemius
> On Dec 5, 2015, at 4:49 PM, Glenn Schultz wrote: > > All, > > I have not used SED in the past so I am continuing to read its documentation > but I need some help with R > > Here is my SED command which works: > system("sed -i '' '/^[\r#]/d; /AGENCY/d' > /Library/Frameworks/R.framework/V

[R] help using SED

2015-12-05 Thread Glenn Schultz
All, I have not used SED in the past so I am continuing to read its documentation but I need some help with R Here is my SED command which works:   system("sed -i ''  '/^[\r#]/d; /AGENCY/d' /Library/Frameworks/R.framework/Versions/3.2/Resources/library/BondLab/Temp_CashFlow/blx_test.cfm") Her

Re: [R] tcltk TK table : Is it possible to block the cell? [Question in 2003, but TK changes the interfaces functions]

2015-12-05 Thread peter dalgaard
> On 05 Dec 2015, at 20:15 , Cleber N.Borges wrote: > > in 2003 [1] someone asked for: > "Is it possible to" block "the cell?" > but the solution involves the "tkcmd" that no longer exists ... > > tkcmd (.Tk.ID (table1), "tag", "celltag" "ZeroOne", "0.1") tcl() should be a drop-in replacement.

[R] tcltk TK table : Is it possible to block the cell? [Question in 2003, but TK changes the interfaces functions]

2015-12-05 Thread Cleber N.Borges
in 2003 [1] someone asked for: "Is it possible to" block "the cell?" but the solution involves the "tkcmd" that no longer exists ... tkcmd (.Tk.ID (table1), "tag", "celltag" "ZeroOne", "0.1") I tried to adapt to: tktag.add (table1, "celltag" "ZeroOne", "0.1") but I get error. How to adapt it?

Re: [R] Tk table: how to get information about configurations ?

2015-12-05 Thread peter dalgaard
> On 05 Dec 2015, at 15:24 , Cleber N.Borges wrote: > > I understood that the configuration is done by the "tk configure" > but I can not get the value of the properties back. > like this: > > tkconfigure (table, background = 'red') > tkcget (table, 'background') # give me an error This corres

Re: [R] Tk table: how to get information about configurations ?

2015-12-05 Thread Cleber N.Borges
I understood that the configuration is done by the "tk configure" but I can not get the value of the properties back. like this: tkconfigure (table, background = 'red') tkcget (table, 'background') # give me an error thanks for you help cleber ## > tkconfigure (table

Re: [R] Tk table: how to get information about configurations ?

2015-12-05 Thread phgrosjean
It depends what property you are looking for… Have you tried tkcget(table, …)? Philippe Grosjean > On 05 Dec 2015, at 12:41, Cleber N.Borges wrote: > > Hello > I would like to know the correct way of getting information about the values > of the parameters of a Tktable. > some details I even m

[R] Tk table: how to get information about configurations ?

2015-12-05 Thread Cleber N.Borges
Hello I would like to know the correct way of getting information about the values of the parameters of a Tktable. some details I even managed to extract but quite archaic form ... I thank you for advance for any help. cleber ### # example library( tcltk ) ; tclRequire( 'Tktabl