Height, Mass and exact time until are all what kinds of data? (Not just looking for numerical)
Continuous
Quorum sensing is mediated by the production, release accumulation and group-wide detection of extracellular signaling molecules, what are these molecules called?
autoinducers
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
What are three of the quorum sensing systems of S. pneumoniae?
phr, blp, com, and Pneyomocyclicin
What is the name for a gene found in all members of a species?
core
Bacteria form structured surface-bound communities called __________.
biofilm(s)
what is known as the "commenting symbol" in R (and many other programs/coding languages)
#
what does the " <- " allow you to do? (when typing a command)
It allows you to store/ save data into some name/variable
Following the name of a dataset, what symbol is used prior to selecting a specific column from that dataset?
$
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