Removes one or all formats from the global format library. When called without arguments, clears all formats. When called with a name, removes only that format.
Examples
fnew("M" = "Male", "F" = "Female", name = "sex")
fclear("sex") # remove one format
#> Format "sex" removed from library.
fclear() # remove all formats
#> All formats cleared from library.