RGtk2

In today's article we are going to delve into the fascinating world of RGtk2. From its origins to its relevance today, we will explore all the relevant aspects of this topic. With a critical and detailed look, we will analyze its implications in different contexts and its impact on society. RGtk2 has been the subject of special interest in various areas, and through this article, we will seek to shed light on its importance and role in everyday life. Whether you are an expert on RGtk2 or simply interested in learning more about the topic, this article is designed to provide a complete and up-to-date overview of RGtk2. Get ready to immerse yourself in this exciting topic and discover everything there is to know about it!

RGtk2
Developer(s)Michael Lawrence and Duncan Temple Lang
Stable release
2.20.36[1] / 8 March 2019 (8 March 2019)
Operating systemCross-platform
PlatformCross-platform
Typewidget toolkit
LicenseGPL
Websitewww.ggobi.org/rgtk2

RGtk2 is a set of R wrappers for the GTK+ graphical user interface library. RGtk2 is free software and licensed under the GPL.

Syntax

The code below will produce a 200x200 pixel window with the words "Hello World" inside.

library(RGtk2)

createWindow <- function()
{
    window <- gtkWindow()

    label <- gtkLabel("Hello World")
    window$add(label)
}

createWindow()
gtk.main()

Notable applications that use RGtk2

RGtk2 has been used in a number of notable applications, some examples:

See also

References

  1. ^ https://cran.r-project.org/package=RGtk2. {{cite web}}: Missing or empty |title= (help)