Untitled Flashcards Set

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/34

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 1:05 AM on 2/18/25
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

35 Terms

1
New cards

ggplot()

Initializes a ggplot object, typically followed by aes() and geom_*() layers.

2
New cards

aes()

Defines aesthetic mappings, such as x and y variables, color, shape, size.

3
New cards

geom_boxplot()

Creates a boxplot to visualize the distribution and outliers of numerical data.

4
New cards

geom_point()

Creates a scatterplot for visualizing relationships between two numerical variables.

5
New cards

geom_histogram()

Creates a histogram to show the distribution of a single numerical variable.

6
New cards

geom_smooth()

Adds a smoothed conditional mean line, such as a LOESS or linear regression curve.

7
New cards

geom_line()

Creates a line chart, typically used for time series data.

8
New cards

labs()

Adds labels for title, axis labels, and legend.

9
New cards

theme_minimal()

Applies a clean, minimalistic theme to the plot.

10
New cards

theme()

Customizes various aspects of the plot, such as text size, legend position, and axis appearance.

11
New cards

scale_x_continuous()

Adjusts the x-axis scale, setting breaks, labels, or limits.

12
New cards

scale_color_manual()

Manually sets colors for different groups in a plot.

13
New cards

glimpse()

Provides a compact summary of a dataframe’s structure.

14
New cards

nrow()

Returns the number of rows in a dataframe.

15
New cards

ncol()

Returns the number of columns in a dataframe.

16
New cards

dim()

Returns both the number of rows and columns in a dataframe.

17
New cards

slice_head()

Returns the first n rows of a dataframe.

18
New cards

filter()

Filters rows based on a condition.

19
New cards

arrange()

Sorts rows by one or more columns.

20
New cards

relocate()

Moves selected columns to a new position in the dataframe.

21
New cards

if_else()

A vectorized conditional function returning values based on a condition.

22
New cards

case_when()

A more flexible conditional function for multiple conditions.

23
New cards

count()

Counts occurrences of values in a column.

24
New cards

group_by()

Groups data for grouped operations.

25
New cards

ungroup()

Removes grouping from a dataframe.

26
New cards

read_csv()

Reads a CSV file into a dataframe.

27
New cards

separate()

Splits a column into multiple columns based on a delimiter.

28
New cards

mutate()

Creates or modifies columns.

29
New cards

summarize()

Aggregates data based on a function like mean, sum, or count.

30
New cards

pivot_longer()

Converts multiple columns into two columns: one for column names and one for values.

31
New cards

pivot_wider()

Converts key-value pairs into multiple columns.

32
New cards

left_join()

Merges two dataframes, keeping all rows from the left dataframe.

33
New cards

inner_join()

Merges two dataframes, keeping only rows that appear in both.

34
New cards

right_join()

Merges two dataframes, keeping all rows from the right dataframe.

35
New cards

full_join()

Merges two dataframes, keeping all rows from both.