45
Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Embed Size (px)

Citation preview

Page 1: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab SoftwareTo Do Analyses as in Marron’s Talks

Matlab Available from UNC Site License

Download Software:

Google “Marron Software”

Page 2: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab SoftwareChoose

Page 3: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab SoftwareDownload .zip File, & Expand to 3 Directories

Page 4: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab SoftwarePut these is Matlab Path

Page 5: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab SoftwarePut these is Matlab Path

Page 6: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab BasicsMatlab has Modalities:

Interpreted (Type Commands)

Batch (Run “Script Files”)

Page 7: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab BasicsMatlab in Interpreted Mode:

Page 8: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab BasicsMatlab in Interpreted Mode:

Page 9: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab BasicsMatlab in Interpreted Mode:

Page 10: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab BasicsMatlab in Interpreted Mode:

Page 11: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab BasicsMatlab in Interpreted Mode:

Page 12: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab BasicsMatlab in Interpreted Mode:

Page 13: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab BasicsMatlab in Interpreted Mode:

For description of a function:

>> help [function name]

Page 14: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab BasicsMatlab in Interpreted Mode:

Page 15: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab BasicsMatlab in Interpreted Mode:

To Find Functions:>> help [category name]

e.g.

>> help stats

Page 16: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab BasicsMatlab in Interpreted Mode:

Page 17: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab BasicsMatlab has Modalities:

Interpreted (Type Commands)

Batch (Run “Script Files”)

For Serious Scientific Computing:Always Run Scripts

Page 18: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab Basics

Matlab Script File:

Just a List of Matlab Commands

Matlab Executes Them in Order

Why Bother (Why Not Just Type

Commands)?

Reproducibility

(Can Find Mistakes & Use Again Much

Later)

Page 19: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab Script Files

An Example:

Recall “Brushing Analysis” of

Next Generation Sequencing Data

Page 20: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Simple

1st

View:

Curve

Overlay

(log

scale)

Functional Data Analysis

Page 21: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Often

Useful

Population

View:

PCA

Scores

Functional Data Analysis

Page 22: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Suggestion

Of

Clusters

???

Functional Data Analysis

Page 23: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Suggestion

Of

Clusters

Which

Are

These?

Functional Data Analysis

Page 24: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Manually

“Brush”

Clusters

Functional Data Analysis

Page 25: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Manually

Brush

Clusters

Clear

Alternate

Splicing

Functional Data Analysis

Page 26: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab Script Files

An Example:

Recall “Brushing Analysis” of

Next Generation Sequencing Data

Analysis In Script File:

VisualizeNextGen2011.m

Matlab Script File Suffix

Page 27: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab Script FilesString of Text

Page 28: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab Script FilesCommand to Display String to Screen

Page 29: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab Script FilesNotes About Data (Maximizes Reproducibility)

Page 30: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab Script FilesHave Index for Each Part of Analysis

Page 31: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab Script FilesSo Keep Everything Done (Max’s Reprod’ity)

Page 32: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab Script FilesNote Some Are Graphics Shown (Can Repeat)

Page 33: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab Script FilesSet Graphics to Default

Page 34: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab Script FilesPut Different Program Parts in IF-Block

Page 35: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab Script FilesComment Out Currently Unused Commands

Page 36: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab Script FilesRead Data from Excel File

Page 37: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab Script FilesFor Generic Functional Data Analysis:

Page 38: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab Script FilesInput Data Matrix

Page 39: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab Script FilesStructure, with Other Settings

Page 40: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab Script FilesMake Scores Scatterplot

Page 41: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab Script FilesUses Careful Choice of Color Matrix

Page 42: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab Script FilesStart with PCA

Page 43: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab Script FilesThen Create Color Matrix

Page 44: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab Script FilesBlack Red Blue

Page 45: Matlab Software To Do Analyses as in Marron’s Talks Matlab Available from UNC Site License Download Software: Google “Marron Software”

Matlab Script FilesRun Script Using Filename as a Command