Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 536 Bytes

GLOSSARY.md

File metadata and controls

21 lines (16 loc) · 536 Bytes

encoding

  • a mapping of data values to chart properties.

argument

# in GGPlot2 the first argument to the ggplot command is usually a dataframe

p = ggplot(df)

function

  • code invoked by a specific command name. Takes arguments as input.
# You can "write" text as output using the print function. The argument will be written as output.

print("This will be written to your output.")

syntax

  • the way, we write code, i.e. the grammer.