Edge Rewrite
// HTMLRewriter · presentation

This page was redesigned at the edge.

Cloudflare fetched the original article and streamed it through HTMLRewriter to apply an entirely new visual system without rebuilding the source page.

// request.cf · coarse context

A page that knows where it met you.

Only coarse request metadata is shown. This demo does not display or persist visitor IP addresses.

Country
US
Cloudflare location
CMH
Connection
HTTP/2
Language
Not provided

Ray ID: a21b27314bd7ddf0

Jump to content

RGtk2

From Wikipedia, the free encyclopedia
RGtk2
DevelopersMichael Lawrence and Duncan Temple Lang
Stable release
2.20.36[1] / 8 March 2019; 7 years ago (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

[edit]

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

[edit]

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

See also

[edit]

References

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