gta_plot_3d_map: Create 3D world map.

View source: R/gta plot 3d map.R

gta_plot_3d_mapR Documentation

Create 3D world map.

Description

This function creates a world map with 3-dimensional values.

Usage

gta_plot_3d_map(
  data = NULL,
  countries = NULL,
  value.x = NULL,
  value.y = NULL,
  value.x.breaks = 4,
  value.y.breaks = 4,
  x.high.y.low = gta_colour$blue[1],
  x.high.y.high = gta_colour$blue[4],
  x.low.y.high = gta_colour$red[4],
  x.low.y.low = gta_colour$red[1],
  x.axis.title = NULL,
  y.axis.title = NULL,
  x.axis.labels = NULL,
  y.axis.labels = NULL,
  legend.title = NULL,
  save.eps = FALSE,
  save.png = FALSE,
  save.path = "/",
  save.name = "3D-Map"
)

Arguments

data

Specify which dataset contains the data. The dataset must have a column with UN codes, and a column for x and y values each.

countries

Specify the name of the country UN codes column as string.

value.x

Specify the name of the x value column as string.

value.y

Specify the name of the y value column as string.

value.x.breaks

Specify in how many tiles the x data should be splitted und numeric form. Default is 4.

value.y.breaks

Specify in how many tiles the y data should be splitted und numeric form. Default is 4.

x.high.y.low

Specify the color of the bottom right matrix corner. Applicable is any colour in the gta colour palette or a HEX colour code. Default: blue[1].

x.high.y.high

Specify the color of the top right matrix corner. Applicable is any colour in the gta colour palette or a HEX colour code. Default: blue[4].

x.low.y.high

Specify the color of the top left matrix corner. Applicable is any colour in the gta colour palette or a HEX colour code. Default: red[4].

x.low.y.low

Specify the color of the bottom left matrix corner. Applicable is any colour in the gta colour palette or a HEX colour code. Default: red[1].

x.axis.title

Specify the name of the colour matrix x-axis. Default: NULL.

y.axis.title

Specify the name of the colour matrix y-axis. Default: NULL.

x.axis.labels

Specify the labels along the colour matrix x-axis. If labels are provided, please specify as many labels as there are breaks, empty labels applicable. Default: NULL.

y.axis.labels

Specify the labels along the colour matrix y-axis. If labels are provided, please specify as many labels as there are breaks, empty labels applicable. Default: NULL.

legend.title

Specify the title of the colour matrix. It is advisable to use the title for axis explanations, as it takes up less space than two additional axis titles. Default: NULL.

save.eps

Specify whether you want to save eps file or not ('TRUE' and 'FALSE'). Plot will be returned as an object and can also be saved manually. Default: FALSE.

save.png

Specify whether you want to save png file or not ('TRUE' and 'FALSE'). Plot will be returned as an object and can also be saved manually. Default: FALSE.

save.path

Specify the path the plots will be saved to. Default: Working directory.

save.name

Specify the name of the files to be saved.

Author(s)

Global Trade Alert

References

www.globaltradealert.org


global-trade-alert/gtalibrary documentation built on April 5, 2024, 1:54 p.m.