The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.
A docking layout manager provided by dockViewR can be used as front-end to a blockr board using this package.
You can install the development version of blockr.dock from GitHub with:
# install.packages("pak")
pak::pak("BristolMyersSquibb/blockr.dock")To start up a board for visualizing Sepal.Length against
Sepal.Width for the iris dataset, we can
run
library(blockr.dock)
library(blockr.core)
serve(
new_dock_board(
blocks = c(
a = new_dataset_block("iris"),
b = new_scatter_block(x = "Sepal.Length", y = "Sepal.Width")
),
links = list(from = "a", to = "b", input = "data"),
extensions = list(edit = new_edit_board_extension()),
layout = list("edit", list("a", "b"))
)
)This is a read-only view of this board, as no blocks can be added or removed and block connectivity cannot be changed. We can however change parameters for the input data and visualization.
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.