Statistics
QS & JC
R
The project
G's (genes, galaxy, )
100

Height, Mass and exact time until are all what kinds of data? (Not just looking for numerical)

Continuous

100

Quorum sensing is mediated by the production, release accumulation and group-wide detection of extracellular signaling molecules, what are these molecules called?

autoinducers


100

When R returns a list, what does the bracketed number, [1], at the beginning mean? (you may ask for a written example) 

R is letting you know what value is listed at the beginning of the returned line

100

What are three of the quorum sensing systems of S. pneumoniae?

phr, blp, com, and Pneyomocyclicin

100

What is the name for a gene found in all members of a species?

core

200

Bacteria form structured surface-bound communities called __________.

biofilm(s)

200

what is known as the "commenting symbol" in R (and many other programs/coding languages)

#

300

what does the " <- " allow you to do? (when typing a command)

It allows you to store/ save data into  some name/variable

400

Following the name of a dataset, what symbol is used prior to selecting a specific column from that dataset?

$

500

genomes_Canada <- subset(SsuisData$ 'Total Genome Size', SsuisData$'Country of Collection'=="Canada")

This code returned an error? Why? (Hint: don't focus on the words/names, focus on the symbols (<-,$, etc)

The ' should be `. This one is a little mean