View source: R/set_parameters.R
reset_radii | R Documentation |
This function reloads the 'OS' default atomic radii values.
reset_radii()
Carlos Henrique da Silveira (carlos.silveira@unifei.edu.br)
Herson Hebert Mendes Soares (hersonhebert@hotmail.com)
Joao Paulo Roquim Romanelli (joaoromanelli@unifei.edu.br)
Patrick Fleming (Pat.Fleming@jhu.edu)
get_radii()
set_radii()
library(fibos)
fibos_config()
#Loads the radius values that have been configured for code execution.
radii = get_radii()
#Displays the first three lines.
radii |> utils::head(3) |> print()
#Modifies the value of a specific radius.
radii$RAY[1] = 2.15
#Sets the radius value from a tibble.
set_radii(radii)
#Displays the first three lines.
get_radii() |> utils::head(3) |> print()
#Loads the default radius values.
reset_radii()
#Displays the first three lines.
get_radii() |> utils::head(3) |> print()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.