Fundamentals of Coding Flashcards

1
Q

What is scientific computing?

A

Coding for the purpose of science
We want to use coding to:
- Manage large amounts of data
- Apply some math/algorithms
- Visualize our data

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

Computer Scientists

A

Solving complex problems with math and computations

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

Software Engineers

A

Design and develop user-friendly software

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

Why can’t we just use Excel

A
  • Highly inefficient
  • Greater chance of introducing errors
  • No permanent record
  • Not reproduceable
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

R

A
  • Developed for statistical computing
  • Many statistical libraries
  • Used primarily by researchers
  • Free to use
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Python

A
  • General purpose language
  • Large user base
  • variety of libraries for data
  • free to use
  • widespread use across industry
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

MatLab

A
  • heavily used in engineering
  • excellent for signal processing
  • Standard toolboxes
  • requires a license
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Functions

A

Block of code that only runs when you call it

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

Modules

A

Grouping of functions for similar tasks

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

Packages/Libraries

A

Grouping of modules for similar projects

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

Anaconda

A

A distribution of the Python for scientific computing and data science, that aims to simplify package management and development

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

Google CoLab

A
  • Cloud-based platform for writing and executing python code
  • hosted by Google drive, requiring only a Google account
  • Provides free access to computational resources
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Strings

A
  • Variables that contains numbers, letters, or other characters
  • CANNOT be used in computations
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Numbers

A

Only contain numbers and can be used in computations

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

Floats

A

Precision numbers that carry decimal places and as such are most commonly used for storing data
- can be converted to an integer using the int command

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

Booleans

A

Represent true or false evaluation of content

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

Lists

A
  • Single variables that store multiple items
  • Defined by square brackets []
  • Can store strings, floats, booleans, integers
18
Q

Finding items on a list through index

A

Add .index() after the name of the list with the item we are looking for in the round brackets

19
Q

Dictionaries

A

Allows you to store “keys” to pair with values/variables
- defined by curly brackets{}

20
Q

Rules for naming variables

A
  1. Cannot start with a number
  2. Cannot use a reserved word as a name
  3. Cannot use a special symbol
  4. Upper and lowercase characters are read differently
21
Q

Best practices when naming variables

A
  1. Never use the letters I or 0 as a single letter names (easily mistaken for 1 or 0)
  2. Don’t make them too general, but also not so descriptive that they become wordy
  3. Keep them short, but long enough to be descriptive
  4. Variable names should be lowercase with underscores used as a separator
  5. A constant can be fully capitalized
22
Q

Control structures

A

Blocks of code that analyze variables and decide the direction the program takes
- Precondition: state of the variables entering a control structure
- Control structure: the program or algorithm that runs based on the preconditions
- Post condition: stat of the variables after the control structure has run

23
Q

What are the 3 basic types of control structures

A
  1. Sequence: Simply runs 1 line after another like a recipe
  2. Selection: Allows for decisions and branching to occur within the block of code
  3. Iteration: Used for repeating lines of code
24
Q

How do you combine strings

25
Q

Coding Iterations

A
  • can code to print directly - use placeholder for each variable in a list
  • Can code to save in a variable (code empty variable to add to, use temp interation variable and then save the new string into empty variable using empty.append(temp variable))
26
Q

abs()

A

Returns the absolute value of a number

27
Q

len()

A

Returns the length of an object

28
Q

max()

A

Returns the largest item in an object

29
Q

min()

A

Returns the smallest item in an object

30
Q

Round()

A

Rounds a number

31
Q

sum()

A

sums the items of a list

32
Q

NumPy

A

Allows you to create array objects that are easier to manipulate

33
Q

Pandas

A
  • Pandas allows us to combine numbers, strings, booleans etc. all in the same array if we want
  • Can add headers
  • Cleaner application for working with a variety of data
34
Q

concat

A

Concatenate, meaning joining together in series

35
Q

How to upload data file

A

pd.read_csv()

36
Q

Creating plots

A
  • import matplotlib.pyplot
  • define x and y
    -plt.whatever_type of graph(x,y)
    -plt.xlabel(), plt.ylabel()
    -plt.show()
37
Q

What is the difference between a function and library

A

Function is a block of reusable code that performs a specific task whereas as a library is a collection of modules and functions that provide prewritten code for various tasks

38
Q

Indexing an array

A
  • Print(Array_name[x,y]
  • For all in a column or row [:,:]
  • multiple numbers in a row or column [[x,x,x],y]
39
Q

Indexing in Pandas

A

Grabs a row
df.loc[x]
in a range: df.loc[x:x]

40
Q

Adding a row to pandas

A

pd.dataframe([data], columns =[column_names])
pd.concat([old_df,additional_row], axis=0, ignore_index=true

41
Q

Adding a column in pandas

A

pd.dataframe([new data], columns= column_name
new_df = pd.concat([new_df, new_column], axis=1)