Programming terms (R-related) Flashcards

1
Q

A script

A

A code file (written in the code editor)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

R

A

Programming language

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

RStudio

A

A GUI (graphical user interface) for R code development

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Data types (4 types)

A
  • Numerical (integers and floating points = numbers)
  • Character (”symbols” and text)
  • Factors (making text computable - For doing analysis with categories )
  • Boolean (True or False)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

A variable

A

A “container” for storing data values in R (assigned with an arrow operator “- >”)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

A dataframe

A

It’s made up of rows and columns and organizes data into a table format.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

A vector

A

A sequence of data elements
Vectors can only be one data type (either character or numerical or Factors or Boolean)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is data mining?

A

Identifying patterns and relationships in data using statistics, data base systems, and sometimes machine learning with the goal to extract (or mine) valuable information from data so we can use it to understand what the data indicates about the world

How well did you know this?
1
Not at all
2
3
4
5
Perfectly