Add a popup text box within an R script using tcltk

后端 未结 3 1477
难免孤独
难免孤独 2021-01-13 02:22

I have a long-ish script to do some data analysis, and it has to connect to several databases. One of the databases tends to update my password more frequently than I like,

3条回答
  •  逝去的感伤
    2021-01-13 03:03

    You answered your own question: you do in fact need <<- in these tcltk examples---see the various posts by Peter over the years, or other examples floating around, other CRAN packages using, or even in the package itself. Try

      library(tcltk)
      demo("tkcanvas")
    

    and see how it treats e.g. lastX, lastY.

提交回复
热议问题