SlideShare uma empresa Scribd logo
1 de 67
Baixar para ler offline
How to perform MEG group analysis with MNE
MNE software for processing MEG and EEG data, A. Gramfort, M. Luessi, E. Larson, D.
Engemann, D. Strohmeier, C. Brodbeck, L. Parkkonen, M. Hämäläinen, Neuroimage, 2014
MEG and EEG data analysis with MNE-Python,A. Gramfort, M. Luessi, E. Larson, D. Engemann,
D. Strohmeier, C. Brodbeck, R. Goj, M. Jas,T. Brooks, L. Parkkonen, M. Hämäläinen, Frontiers in
Neuroscience, 2013
Biomag 2016
http://www.biomag2016.org/satellite_meetings2.php
http://martinos.org/mne
• MNE based on C code developed for ~15 years by MSH
• MNE-Python started ~6 years ago at MGH, Boston
About the project
Source: https://www.ohloh.net/p/MNE
http://martinos.org/mne/
http://mne-tools.github.io/mne-biomag-group-demo/
People behind this work
@agramfort @dengemann
@jasmainak
http://martinos.org/mne/stable/whats_new.html
@jaeilepp
@Eric89GXL
(Some) MNE People
@agramfort @mluessi @dengemann
@lauriparkkonen
@Eric89GXL
@mshamalainen
@t3on
@joewalter
@jasmainak
@rgoj
@chris=anmbrodbeck
@jaeilepp
@adykstra @leggi@a
@kazemakase
@TalLinzen
@OlafHauk @	jdammers
http://martinos.org/mne/stable/whats_new.html
@kingjr
MNE People
https://github.com/mne-tools/mne-python/graphs/contributors
Alan Leggitt, Alexander Rudiuk, Alexandre Barachant, Alexandre Gramfort,
Andrew Dykstra, Asish Panda, Basile Pinsard, Brad Buran, Camilo Lamus, Cathy
Nangini, Chris Holdgraf, Christian Brodbeck, Christoph Dinh, Christopher J. Bailey,
Christopher Mullins, Clemens Brunner, Clément Moutard, Dan G. Wakeman,
Daniel McCloy, Daniel Strohmeier, Denis A. Engemann, Emanuele Olivetti, Emily
Ruzich, Emily Stephen, Eric Larson, Fede Raimondo, Federico Raimondo, Félix
Raimundo, Guillaume Dumas, Hafeza Anevar, Hari Bharadwaj, Ingoo Lee, Jaakko
Leppakangas, Jair Montoya, Jean-Remi King, Johannes Niediek, Jona Sassenhagen,
Jussi Nurminen, Kambiz Tavabi, Keith Doelling, Lorenzo De Santis, Louis Thibault,
Luke Bloy, Mads Jensen, Mainak Jas, Manfred Kitzbichler, Manoj Kumar, Marian
Dovgialo, Marijn van Vliet, Mark Wronkiewicz, Marmaduke Woodman, Martin
Billinger, Martin Luessi, Matt Tucker, Matti Hamalainen, Michael Krause, Mikolaj
Magnuski, Natalie Klein, Nick Foti, Nick Ward, Niklas Wilming, Olaf Hauk, Phillip
Alday, Praveen Sripad, Richard Höchenberger, Roan LaPlante, Romain Trachel,
Roman Goj, Ross Maddox, Sagun Pai, Saket Choudhary, Simon Kornblith, Simon-
Shlomo Poil, Sourav Singh, Tal Linzen, Tanay, Teon Brooks, Tom Dupré la Tour,
Yaroslav Halchenko,Yousra Bekhti, Ellen Lau, Mads Jensen !
https://github.com/mne-tools/mne-biomag-group-demo/
Get the codeto replicate
http://mne-tools.github.io/mne-biomag-group-demo/auto_scripts/index.html
Analysis Scripts
One script
.../mne-biomag-group-demo/tree/master/scripts/processing
Fetch data from OpenfMRI
Sensor space analysis
Source space analysis
Anatomical pipeline
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/index.html
Results atgroup level
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/index.html
Demos
and results for each
subject
Installing MNE-Python
$ pip install --upgrade --user mne
Install Scientific Python environment, e.g.,Anaconda at
http://martinos.org/mne/stable/install_mne_python.html
https://www.continuum.io/downloads
Install MNE-Python:
.../mne-biomag-group-demo/tree/master/scripts/processing
Fetch data from OpenfMRI
Sensor space analysis
Source space analysis
Anatomical pipeline
Built on top of FreeSurfer
$ recon-all -s ${SUBJECT} -i xy000000.nii -all
http://surfer.nmr.mgh.harvard.edu/
Anatomy workflow
MRI data
MRI data reconstructed
recon-all (Freesurfer 5.1)
BEM mesh
mne watershed_bem
or mne flash_bem
BEM model
MEG/EEG data
Forward solution
or gain matrix
not automatic
needs freesurfer
Coregistration
mne_analyze/mrilab/Python
BEM meshes
http://martinos.org/mne/stable/auto_tutorials/plot_forward.html
BEM meshes
>>> for subject_id in range(1, 20):
>>> subject = "sub%03d" % subject_id
>>> mne.bem.make_watershed_bem(subject,
>>> subjects_dir=subjects_dir,
>>> overwrite=True)
http://mne-tools.github.io/mne-biomag-group-demo/auto_scripts/11-make_watershed.html
Preprocessing: From raw to ERP/ERF
drifts blinks
line
noise
cardiac
10 seconds filtered data clean data using SSPs
Preprocessing
to get clean
evoked data
(ERF/ERP)
or ICA
Maxwell filtering
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_maxfilter.html
MNE implements
maxfilter (TM)
Maxwell filtering
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_maxfilter.html
MNE implements
maxfilter (TM)
Maxwell filtering
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_maxfilter.html
MNE implements
maxfilter (TM)
.../mne-biomag-group-demo/tree/master/scripts/processing
Fetch data from OpenfMRI
Sensor space analysis
Source space analysis
Filtering
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_analysis_1.html
Filtering
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_analysis_1.html
Code for filtering
>>> for subject_id in range(1, 20):
>>> subject = "sub%03d" % subject_id
>>> for run in range(1, 7):
>>> raw_in = ...
>>> raw = mne.io.read_raw_fif(raw_in, preload=True, add_eeg_ref=False)
>>> raw.filter(1, 40, l_trans_bandwidth=0.5, h_trans_bandwidth='auto',
>>> filter_length='auto', phase='zero', fir_window='hann')
http://mne-tools.github.io/mne-biomag-group-demo/auto_scripts/02-python_filtering.html
Filter design
http://martinos.org/mne/stable/auto_tutorials/plot_background_filtering.html
Filter design
High pass filtering removes slow drifts and can make
baselining unnecessary… yet the story is not that simple
http://martinos.org/mne/stable/auto_tutorials/plot_background_filtering.html
Paradigm
Presentation Screen
Famous
Unfamiliar
Scrambled
Paradigm on trigger channel
>>> mask = 4096 + 256 # mask for excluding high order bits
>>> events = mne.find_events(raw, stim_channel='STI101',
>>> consecutive='increasing', mask=mask,
>>> mask_type='not_and', min_duration=0.003)
>>> fig = mne.viz.plot_events(events)
http://mne-tools.github.io/mne-biomag-group-demo/auto_scripts/03-run_extract_events.html
Paradigm in code
>>> events_id = {
>>> 'face/famous/first': 5,
>>> 'face/famous/immediate': 6,
>>> 'face/famous/long': 7,
>>> 'face/unfamiliar/first': 13,
>>> 'face/unfamiliar/immediate': 14,
>>> 'face/unfamiliar/long': 15,
>>> 'scrambled/first': 17,
>>> 'scrambled/immediate': 18,
>>> 'scrambled/long': 19,
>>> }
Use “tags” to
describe events
From Epochs to Evoked
>>> tmin, tmax = -0.2, 0.8
>>> reject = dict(grad=4000e-13, mag=4e-12, eog=180e-6)
>>> baseline = None
>>>
>>> epochs = mne.Epochs(raw, events, events_id, tmin, tmax,
proj=True, picks=picks, baseline=baseline,
preload=True, decim=2, reject=reject,
add_eeg_ref=False)
http://mne-tools.github.io/mne-biomag-group-demo/auto_scripts/05-make_epochs.html
…reject the ones with blinks
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_analysis_1.html
why did we drop epochs?
Example of “drop log” for subject 1:
Use ICA on Epochs to remove ECG
>>> ica_name = op.join(meg_dir, subject, 'run_%02d-ica.fif' % run)
>>> ica = read_ica(ica_name)
>>> n_max_ecg = 3 # use max 3 components
>>> ecg_epochs = create_ecg_epochs(raw, tmin=-.5, tmax=.5)
>>> ecg_inds, scores_ecg = ica.find_bads_ecg(ecg_epochs,
method='ctps',
threshold=0.8)
>>> ica.exclude += ecg_inds[:n_max_ecg]
>>> ica.apply(epochs)
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_ica.html
Use ICA on Epochs to remove ECG
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_ica.html
Fit and apply ICA on Epochs
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_ica.html
From Epochs to Evoked
>>> evoked_faces = epochs['face'].average()
>>> evoked_famous = epochs['face/famous'].average()
>>> evoked_scrambled = epochs['scrambled'].average()
>>> evoked_unfamiliar = epochs[‘face/unfamiliar'].average()
>>> contrast = mne.combine_evoked([evoked_famous,
>>> evoked_unfamiliar,
>>> evoked_scrambled],
>>> weights=[0.5, 0.5, -1.])
>>> mne.evoked.write_evokeds('%s-ave.fif' % subject,
[evoked_famous, evoked_scrambled,
evoked_unfamiliar, contrast,
faces])
http://mne-tools.github.io/mne-biomag-group-demo/auto_scripts/06-make_evoked.html
Index Epochs withtags
EEG Evoked for 3 first subjects
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_compare.html
EEG Evoked topographies (6 subjects)
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_compare.html
MEG Evoked for 3 first subjects
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_compare.html
MEG Evoked for 3 first subjects
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_compare.html
Back to filtering…
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_fanning.html
>>> raw.filter(None, 40, fir_window='hann', phase='zero',
h_trans_bandwidth=‘auto’, filter_length='auto')
Back to filtering…
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_fanning.html
>>> raw.filter(None, 40, fir_window='hann', phase='zero',
h_trans_bandwidth=‘auto’, filter_length='auto')
Fanning
problem
Much less
fanning
Back to filtering…
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_fanning.html
>>> raw.filter(1, None, l_trans_bandwidth=0.5,
fir_window='hann', phase='zero',
h_trans_bandwidth=‘auto’, filter_length='auto')
Covariance est. and whitening
Engemann, D.A., Gramfort,A., Automated model selection in covariance estimation and
spatial whitening of MEG and EEG signals., Neuroimage 2015
>>> cov = mne.compute_covariance(epochs, tmax=0,
method='shrunk')
Covariance est. and whitening
>>> cov = mne.compute_covariance(epochs, tmax=0,
method='shrunk')
whitened Global
Field Power
whitened ERF
whitened ERP
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_analysis_1.html
Grand averaging
>>> for idx, evokeds in enumerate(all_evokeds):
>>> # Combine subjects:
>>> grand_avg[idx] = mne.combine_evoked(evokeds, 'equal')
>>> mapping = {'Famous': evokeds[0], 'Scrambled': evokeds[1],
'Unfamiliar': evokeds[2]}
>>> mne.viz.plot_compare_evokeds(mapping, [idx])
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_group.html
Grand averaging
>>> for idx, evokeds in enumerate(all_evokeds):
>>> # Combine subjects:
>>> grand_avg[idx] = mne.combine_evoked(evokeds, 'equal')
>>> mapping = {'Famous': evokeds[0], 'Scrambled': evokeds[1],
'Unfamiliar': evokeds[2]}
>>> mne.viz.plot_compare_evokeds(mapping, [idx])
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_group.html
From baseline to baseline !
MNE vs.Wakeman et al.
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_group.html
MNE vs.Wakeman et al.
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_group.html
Real?
Sensors stats (cluster level)
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_sensor_cluster_stats_eeg_channel.html
Sensors stats (cluster level)
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_sensor_spatio_temporal_cluster_stats.html
p = 0.01 (corrected)
Decoding
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_time_decoding.html
>>> td = TimeDecoding(predict_mode='cross-validation',
times=times, scorer='roc_auc')
>>> td.fit(epochs, y)
http://mne-tools.github.io/mne-biomag-group-demo/auto_scripts/08-run_time_decoding.html
Source space analysis
•3 Layers BEM forward modeling
•dSPM source localization on cortical surface
•loose orientation (0.2) & depth (0.8) & SNR = 3
•RMS across orientations
•morphing to fsaverage:
subject fsaveragemorphing
… the MNE (default) way
Source space analysis
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_analysis_2.html
Subject 2
Contrast
localization
(faces vs.
scrambled
Source space group analysis
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_group.html
16 subjects
average of
Contrast
(faces vs.
scrambled
MNE web report
http://perso.telecom-paristech.fr/~mjas/biomag_demo/report_sub002.html
MNE web report
http://perso.telecom-paristech.fr/~mjas/biomag_demo/report_sub002.html
Command line:
$ mne report --path MEG/sub002 --
info MEG/sub002/run_01_filt_sss-
epo.fif --subject sub002 --subjects-
dir subjects/ --verbose --jobs 6
Getting help http://martinos.org/mne/
http://mail.nmr.mgh.harvard.edu/mailman/listinfo/mne_analysis
Mailing list:
Getting inspired...
http://martinos.org/mne/auto_examples/index.html
Sending feedback
https://github.com/mne-tools/mne-python
Some links
• Documentation:
• http://martinos.org/mne/ (general doc)
• http://martinos.org/mne/stable/manual/index.html (manual)
• http://martinos.org/mne/stable/tutorials.html (tutorials with code)
• http://martinos.org/mne/auto_examples/index.html (python examples)
• Code:
• https://github.com/mne-tools/mne-python (mne-python code)
• https://github.com/mne-tools/mne-matlab (mne matlab toolbox)
• https://github.com/mne-tools/mne-scripts (mne shell scripts)
Access HCP-MEG data as MNE-Python data structures
https:/mne-tools.github.io/mne-hcp
Seamlessly plug HCP MEG data into the Python ecosystem
…/mne-hcp/auto_tutorials/index.html
Poster
[Mo-P008]
Engemann et al.
Alexandre Gramfort
http://alexandre.gramfort.netContact:
GitHub : @agramfort Twitter : @agramfort
If you want a
sticker come to the
MNE poster !
Open	Science!

Mais conteúdo relacionado

Mais procurados

What's new in PHP 8.0?
What's new in PHP 8.0?What's new in PHP 8.0?
What's new in PHP 8.0?Nikita Popov
 
Modules in Python Programming
Modules in Python ProgrammingModules in Python Programming
Modules in Python Programmingsambitmandal
 
Python Programming Essentials - M25 - os and sys modules
Python Programming Essentials - M25 - os and sys modulesPython Programming Essentials - M25 - os and sys modules
Python Programming Essentials - M25 - os and sys modulesP3 InfoTech Solutions Pvt. Ltd.
 
Exception handling and function in python
Exception handling and function in pythonException handling and function in python
Exception handling and function in pythonTMARAGATHAM
 
What is Dictionary In Python? Python Dictionary Tutorial | Edureka
What is Dictionary In Python? Python Dictionary Tutorial | EdurekaWhat is Dictionary In Python? Python Dictionary Tutorial | Edureka
What is Dictionary In Python? Python Dictionary Tutorial | EdurekaEdureka!
 
PostgreSQL Materialized Views with Active Record
PostgreSQL Materialized Views with Active RecordPostgreSQL Materialized Views with Active Record
PostgreSQL Materialized Views with Active RecordDavid Roberts
 
PHP Performance Trivia
PHP Performance TriviaPHP Performance Trivia
PHP Performance TriviaNikita Popov
 
파이썬 데이터과학 레벨2 - 데이터 시각화와 실전 데이터분석, 그리고 머신러닝 입문 (2020년 이태영)
파이썬 데이터과학 레벨2 - 데이터 시각화와 실전 데이터분석, 그리고 머신러닝 입문 (2020년 이태영)파이썬 데이터과학 레벨2 - 데이터 시각화와 실전 데이터분석, 그리고 머신러닝 입문 (2020년 이태영)
파이썬 데이터과학 레벨2 - 데이터 시각화와 실전 데이터분석, 그리고 머신러닝 입문 (2020년 이태영)Tae Young Lee
 
How Functions Work
How Functions WorkHow Functions Work
How Functions WorkSaumil Shah
 
MessagePack(msgpack): Compact and Fast Serialization Library
MessagePack(msgpack): Compact and Fast Serialization LibraryMessagePack(msgpack): Compact and Fast Serialization Library
MessagePack(msgpack): Compact and Fast Serialization LibraryTakatoshi Kondo
 
Windows container security
Windows container securityWindows container security
Windows container securityDocker, Inc.
 
Function in Python
Function in PythonFunction in Python
Function in PythonYashdev Hada
 
Introduction to spaCy
Introduction to spaCyIntroduction to spaCy
Introduction to spaCyRyo Takahashi
 
openFrameworks – パーティクルを動かす、静的配列と動的配列 - 多摩美メディアアートII
openFrameworks – パーティクルを動かす、静的配列と動的配列 - 多摩美メディアアートIIopenFrameworks – パーティクルを動かす、静的配列と動的配列 - 多摩美メディアアートII
openFrameworks – パーティクルを動かす、静的配列と動的配列 - 多摩美メディアアートIIAtsushi Tadokoro
 
Quick flask an intro to flask
Quick flask   an intro to flaskQuick flask   an intro to flask
Quick flask an intro to flaskjuzten
 

Mais procurados (20)

What's new in PHP 8.0?
What's new in PHP 8.0?What's new in PHP 8.0?
What's new in PHP 8.0?
 
Modules in Python Programming
Modules in Python ProgrammingModules in Python Programming
Modules in Python Programming
 
Python Programming Essentials - M25 - os and sys modules
Python Programming Essentials - M25 - os and sys modulesPython Programming Essentials - M25 - os and sys modules
Python Programming Essentials - M25 - os and sys modules
 
Exception handling and function in python
Exception handling and function in pythonException handling and function in python
Exception handling and function in python
 
What is Dictionary In Python? Python Dictionary Tutorial | Edureka
What is Dictionary In Python? Python Dictionary Tutorial | EdurekaWhat is Dictionary In Python? Python Dictionary Tutorial | Edureka
What is Dictionary In Python? Python Dictionary Tutorial | Edureka
 
PostgreSQL Materialized Views with Active Record
PostgreSQL Materialized Views with Active RecordPostgreSQL Materialized Views with Active Record
PostgreSQL Materialized Views with Active Record
 
PHP Performance Trivia
PHP Performance TriviaPHP Performance Trivia
PHP Performance Trivia
 
Vim Hacks
Vim HacksVim Hacks
Vim Hacks
 
파이썬 데이터과학 레벨2 - 데이터 시각화와 실전 데이터분석, 그리고 머신러닝 입문 (2020년 이태영)
파이썬 데이터과학 레벨2 - 데이터 시각화와 실전 데이터분석, 그리고 머신러닝 입문 (2020년 이태영)파이썬 데이터과학 레벨2 - 데이터 시각화와 실전 데이터분석, 그리고 머신러닝 입문 (2020년 이태영)
파이썬 데이터과학 레벨2 - 데이터 시각화와 실전 데이터분석, 그리고 머신러닝 입문 (2020년 이태영)
 
How Functions Work
How Functions WorkHow Functions Work
How Functions Work
 
File Handling in Python
File Handling in PythonFile Handling in Python
File Handling in Python
 
MessagePack(msgpack): Compact and Fast Serialization Library
MessagePack(msgpack): Compact and Fast Serialization LibraryMessagePack(msgpack): Compact and Fast Serialization Library
MessagePack(msgpack): Compact and Fast Serialization Library
 
Windows container security
Windows container securityWindows container security
Windows container security
 
Function in Python
Function in PythonFunction in Python
Function in Python
 
Parsing
ParsingParsing
Parsing
 
Introduction to spaCy
Introduction to spaCyIntroduction to spaCy
Introduction to spaCy
 
openFrameworks – パーティクルを動かす、静的配列と動的配列 - 多摩美メディアアートII
openFrameworks – パーティクルを動かす、静的配列と動的配列 - 多摩美メディアアートIIopenFrameworks – パーティクルを動かす、静的配列と動的配列 - 多摩美メディアアートII
openFrameworks – パーティクルを動かす、静的配列と動的配列 - 多摩美メディアアートII
 
H4x0rs gonna hack
H4x0rs gonna hackH4x0rs gonna hack
H4x0rs gonna hack
 
Python Modules
Python ModulesPython Modules
Python Modules
 
Quick flask an intro to flask
Quick flask   an intro to flaskQuick flask   an intro to flask
Quick flask an intro to flask
 

Destaque

Teaching ML with scikit-learn at Telecom ParisTech
Teaching ML with scikit-learn at Telecom ParisTechTeaching ML with scikit-learn at Telecom ParisTech
Teaching ML with scikit-learn at Telecom ParisTechagramfort
 
Anomaly/Novelty detection with scikit-learn
Anomaly/Novelty detection with scikit-learnAnomaly/Novelty detection with scikit-learn
Anomaly/Novelty detection with scikit-learnagramfort
 
Very helpful PPT: Models of word recognition
Very helpful PPT: Models of word recognitionVery helpful PPT: Models of word recognition
Very helpful PPT: Models of word recognitionAndy Milewski
 
Anomaly Detection Via PCA
Anomaly Detection Via PCAAnomaly Detection Via PCA
Anomaly Detection Via PCADeepak Kumar
 
MagnetoEncephaloGraphy- By Anuj Malik
MagnetoEncephaloGraphy- By Anuj MalikMagnetoEncephaloGraphy- By Anuj Malik
MagnetoEncephaloGraphy- By Anuj MalikAEC PRIVATE LIMITED.
 
Bridging the Gap Between Data Science & Engineer: Building High-Performance T...
Bridging the Gap Between Data Science & Engineer: Building High-Performance T...Bridging the Gap Between Data Science & Engineer: Building High-Performance T...
Bridging the Gap Between Data Science & Engineer: Building High-Performance T...ryanorban
 
Booz Allen Field Guide to Data Science
Booz Allen Field Guide to Data Science Booz Allen Field Guide to Data Science
Booz Allen Field Guide to Data Science Booz Allen Hamilton
 
How I got 2.5 Million views on Slideshare (by @nickdemey - Board of Innovation)
How I got 2.5 Million views on Slideshare (by @nickdemey - Board of Innovation)How I got 2.5 Million views on Slideshare (by @nickdemey - Board of Innovation)
How I got 2.5 Million views on Slideshare (by @nickdemey - Board of Innovation)Board of Innovation
 
The Seven Deadly Social Media Sins
The Seven Deadly Social Media SinsThe Seven Deadly Social Media Sins
The Seven Deadly Social Media SinsXPLAIN
 
Five Killer Ways to Design The Same Slide
Five Killer Ways to Design The Same SlideFive Killer Ways to Design The Same Slide
Five Killer Ways to Design The Same SlideCrispy Presentations
 
How People Really Hold and Touch (their Phones)
How People Really Hold and Touch (their Phones)How People Really Hold and Touch (their Phones)
How People Really Hold and Touch (their Phones)Steven Hoober
 
Upworthy: 10 Ways To Win The Internets
Upworthy: 10 Ways To Win The InternetsUpworthy: 10 Ways To Win The Internets
Upworthy: 10 Ways To Win The InternetsUpworthy
 
What 33 Successful Entrepreneurs Learned From Failure
What 33 Successful Entrepreneurs Learned From FailureWhat 33 Successful Entrepreneurs Learned From Failure
What 33 Successful Entrepreneurs Learned From FailureReferralCandy
 
Why Content Marketing Fails
Why Content Marketing FailsWhy Content Marketing Fails
Why Content Marketing FailsRand Fishkin
 
The History of SEO
The History of SEOThe History of SEO
The History of SEOHubSpot
 
How To (Really) Get Into Marketing
How To (Really) Get Into MarketingHow To (Really) Get Into Marketing
How To (Really) Get Into MarketingEd Fry
 
The What If Technique presented by Motivate Design
The What If Technique presented by Motivate DesignThe What If Technique presented by Motivate Design
The What If Technique presented by Motivate DesignMotivate Design
 

Destaque (20)

Teaching ML with scikit-learn at Telecom ParisTech
Teaching ML with scikit-learn at Telecom ParisTechTeaching ML with scikit-learn at Telecom ParisTech
Teaching ML with scikit-learn at Telecom ParisTech
 
Anomaly/Novelty detection with scikit-learn
Anomaly/Novelty detection with scikit-learnAnomaly/Novelty detection with scikit-learn
Anomaly/Novelty detection with scikit-learn
 
Very helpful PPT: Models of word recognition
Very helpful PPT: Models of word recognitionVery helpful PPT: Models of word recognition
Very helpful PPT: Models of word recognition
 
Anomaly Detection Via PCA
Anomaly Detection Via PCAAnomaly Detection Via PCA
Anomaly Detection Via PCA
 
Slideshare with animations
Slideshare with animationsSlideshare with animations
Slideshare with animations
 
MagnetoEncephaloGraphy- By Anuj Malik
MagnetoEncephaloGraphy- By Anuj MalikMagnetoEncephaloGraphy- By Anuj Malik
MagnetoEncephaloGraphy- By Anuj Malik
 
Bridging the Gap Between Data Science & Engineer: Building High-Performance T...
Bridging the Gap Between Data Science & Engineer: Building High-Performance T...Bridging the Gap Between Data Science & Engineer: Building High-Performance T...
Bridging the Gap Between Data Science & Engineer: Building High-Performance T...
 
Booz Allen Field Guide to Data Science
Booz Allen Field Guide to Data Science Booz Allen Field Guide to Data Science
Booz Allen Field Guide to Data Science
 
The Minimum Loveable Product
The Minimum Loveable ProductThe Minimum Loveable Product
The Minimum Loveable Product
 
How I got 2.5 Million views on Slideshare (by @nickdemey - Board of Innovation)
How I got 2.5 Million views on Slideshare (by @nickdemey - Board of Innovation)How I got 2.5 Million views on Slideshare (by @nickdemey - Board of Innovation)
How I got 2.5 Million views on Slideshare (by @nickdemey - Board of Innovation)
 
The Seven Deadly Social Media Sins
The Seven Deadly Social Media SinsThe Seven Deadly Social Media Sins
The Seven Deadly Social Media Sins
 
Five Killer Ways to Design The Same Slide
Five Killer Ways to Design The Same SlideFive Killer Ways to Design The Same Slide
Five Killer Ways to Design The Same Slide
 
How People Really Hold and Touch (their Phones)
How People Really Hold and Touch (their Phones)How People Really Hold and Touch (their Phones)
How People Really Hold and Touch (their Phones)
 
Upworthy: 10 Ways To Win The Internets
Upworthy: 10 Ways To Win The InternetsUpworthy: 10 Ways To Win The Internets
Upworthy: 10 Ways To Win The Internets
 
What 33 Successful Entrepreneurs Learned From Failure
What 33 Successful Entrepreneurs Learned From FailureWhat 33 Successful Entrepreneurs Learned From Failure
What 33 Successful Entrepreneurs Learned From Failure
 
Design Your Career 2018
Design Your Career 2018Design Your Career 2018
Design Your Career 2018
 
Why Content Marketing Fails
Why Content Marketing FailsWhy Content Marketing Fails
Why Content Marketing Fails
 
The History of SEO
The History of SEOThe History of SEO
The History of SEO
 
How To (Really) Get Into Marketing
How To (Really) Get Into MarketingHow To (Really) Get Into Marketing
How To (Really) Get Into Marketing
 
The What If Technique presented by Motivate Design
The What If Technique presented by Motivate DesignThe What If Technique presented by Motivate Design
The What If Technique presented by Motivate Design
 

Semelhante a MNE group analysis presentation @ Biomag 2016 conf.

Python and Machine Learning
Python and Machine LearningPython and Machine Learning
Python and Machine Learningtrygub
 
Deep Learning Cases: Text and Image Processing
Deep Learning Cases: Text and Image ProcessingDeep Learning Cases: Text and Image Processing
Deep Learning Cases: Text and Image ProcessingGrigory Sapunov
 
Chat bot making process using Python 3 & TensorFlow
Chat bot making process using Python 3 & TensorFlowChat bot making process using Python 3 & TensorFlow
Chat bot making process using Python 3 & TensorFlowJeongkyu Shin
 
A CTF Hackers Toolbox
A CTF Hackers ToolboxA CTF Hackers Toolbox
A CTF Hackers ToolboxStefan
 
Measuring Software development with GrimoireLab
Measuring Software development with GrimoireLabMeasuring Software development with GrimoireLab
Measuring Software development with GrimoireLabValerio Cosentino
 
Pypy is-it-ready-for-production-the-sequel
Pypy is-it-ready-for-production-the-sequelPypy is-it-ready-for-production-the-sequel
Pypy is-it-ready-for-production-the-sequelMark Rees
 
Drew Conway: A Social Scientist's Perspective on Data Science
Drew Conway: A Social Scientist's Perspective on Data ScienceDrew Conway: A Social Scientist's Perspective on Data Science
Drew Conway: A Social Scientist's Perspective on Data Sciencemortardata
 
Using K-Nearest Neighbors and Support Vector Machine Classifiers in Personal ...
Using K-Nearest Neighbors and Support Vector Machine Classifiers in Personal ...Using K-Nearest Neighbors and Support Vector Machine Classifiers in Personal ...
Using K-Nearest Neighbors and Support Vector Machine Classifiers in Personal ...IJCSIS Research Publications
 
Django1.7 automated migrations like ruby on rails
Django1.7 automated migrations like ruby on railsDjango1.7 automated migrations like ruby on rails
Django1.7 automated migrations like ruby on railsAnish Menon
 
Conducting Experiments on the Software Architecture of Robotic Systems (QRARS...
Conducting Experiments on the Software Architecture of Robotic Systems (QRARS...Conducting Experiments on the Software Architecture of Robotic Systems (QRARS...
Conducting Experiments on the Software Architecture of Robotic Systems (QRARS...Ivano Malavolta
 
DevOps Practice in Nonprofit - Abdurrachman Mappuji
DevOps Practice in Nonprofit - Abdurrachman MappujiDevOps Practice in Nonprofit - Abdurrachman Mappuji
DevOps Practice in Nonprofit - Abdurrachman MappujiDevOpsDaysJKT
 
Open source software for startups
Open source software for startupsOpen source software for startups
Open source software for startupsvictorneo
 
Cheminformatics Software Development: Case Studies
Cheminformatics Software Development: Case StudiesCheminformatics Software Development: Case Studies
Cheminformatics Software Development: Case StudiesJeremy Yang
 
Neuronvisio sumatra workflow
Neuronvisio sumatra workflowNeuronvisio sumatra workflow
Neuronvisio sumatra workflowMichele Mattioni
 
Wiki dev nlp
Wiki dev nlpWiki dev nlp
Wiki dev nlpICSM 2010
 

Semelhante a MNE group analysis presentation @ Biomag 2016 conf. (20)

Python and Machine Learning
Python and Machine LearningPython and Machine Learning
Python and Machine Learning
 
Obj report
Obj reportObj report
Obj report
 
Deep Learning Cases: Text and Image Processing
Deep Learning Cases: Text and Image ProcessingDeep Learning Cases: Text and Image Processing
Deep Learning Cases: Text and Image Processing
 
YAPCEurope2014-myfinder
YAPCEurope2014-myfinderYAPCEurope2014-myfinder
YAPCEurope2014-myfinder
 
Chat bot making process using Python 3 & TensorFlow
Chat bot making process using Python 3 & TensorFlowChat bot making process using Python 3 & TensorFlow
Chat bot making process using Python 3 & TensorFlow
 
Ladypy 01
Ladypy 01Ladypy 01
Ladypy 01
 
A CTF Hackers Toolbox
A CTF Hackers ToolboxA CTF Hackers Toolbox
A CTF Hackers Toolbox
 
Measuring Software development with GrimoireLab
Measuring Software development with GrimoireLabMeasuring Software development with GrimoireLab
Measuring Software development with GrimoireLab
 
Pypy is-it-ready-for-production-the-sequel
Pypy is-it-ready-for-production-the-sequelPypy is-it-ready-for-production-the-sequel
Pypy is-it-ready-for-production-the-sequel
 
Drew Conway: A Social Scientist's Perspective on Data Science
Drew Conway: A Social Scientist's Perspective on Data ScienceDrew Conway: A Social Scientist's Perspective on Data Science
Drew Conway: A Social Scientist's Perspective on Data Science
 
Using K-Nearest Neighbors and Support Vector Machine Classifiers in Personal ...
Using K-Nearest Neighbors and Support Vector Machine Classifiers in Personal ...Using K-Nearest Neighbors and Support Vector Machine Classifiers in Personal ...
Using K-Nearest Neighbors and Support Vector Machine Classifiers in Personal ...
 
Django1.7 automated migrations like ruby on rails
Django1.7 automated migrations like ruby on railsDjango1.7 automated migrations like ruby on rails
Django1.7 automated migrations like ruby on rails
 
Malware analysis
Malware analysisMalware analysis
Malware analysis
 
Conducting Experiments on the Software Architecture of Robotic Systems (QRARS...
Conducting Experiments on the Software Architecture of Robotic Systems (QRARS...Conducting Experiments on the Software Architecture of Robotic Systems (QRARS...
Conducting Experiments on the Software Architecture of Robotic Systems (QRARS...
 
DevOps Practice in Nonprofit - Abdurrachman Mappuji
DevOps Practice in Nonprofit - Abdurrachman MappujiDevOps Practice in Nonprofit - Abdurrachman Mappuji
DevOps Practice in Nonprofit - Abdurrachman Mappuji
 
Open source software for startups
Open source software for startupsOpen source software for startups
Open source software for startups
 
Cheminformatics Software Development: Case Studies
Cheminformatics Software Development: Case StudiesCheminformatics Software Development: Case Studies
Cheminformatics Software Development: Case Studies
 
Neuronvisio sumatra workflow
Neuronvisio sumatra workflowNeuronvisio sumatra workflow
Neuronvisio sumatra workflow
 
OpenML NeurIPS2018
OpenML NeurIPS2018OpenML NeurIPS2018
OpenML NeurIPS2018
 
Wiki dev nlp
Wiki dev nlpWiki dev nlp
Wiki dev nlp
 

Último

Chemistry 5th semester paper 1st Notes.pdf
Chemistry 5th semester paper 1st Notes.pdfChemistry 5th semester paper 1st Notes.pdf
Chemistry 5th semester paper 1st Notes.pdfSumit Kumar yadav
 
Factory Acceptance Test( FAT).pptx .
Factory Acceptance Test( FAT).pptx       .Factory Acceptance Test( FAT).pptx       .
Factory Acceptance Test( FAT).pptx .Poonam Aher Patil
 
Module for Grade 9 for Asynchronous/Distance learning
Module for Grade 9 for Asynchronous/Distance learningModule for Grade 9 for Asynchronous/Distance learning
Module for Grade 9 for Asynchronous/Distance learninglevieagacer
 
module for grade 9 for distance learning
module for grade 9 for distance learningmodule for grade 9 for distance learning
module for grade 9 for distance learninglevieagacer
 
development of diagnostic enzyme assay to detect leuser virus
development of diagnostic enzyme assay to detect leuser virusdevelopment of diagnostic enzyme assay to detect leuser virus
development of diagnostic enzyme assay to detect leuser virusNazaninKarimi6
 
Porella : features, morphology, anatomy, reproduction etc.
Porella : features, morphology, anatomy, reproduction etc.Porella : features, morphology, anatomy, reproduction etc.
Porella : features, morphology, anatomy, reproduction etc.Silpa
 
Human genetics..........................pptx
Human genetics..........................pptxHuman genetics..........................pptx
Human genetics..........................pptxSilpa
 
Climate Change Impacts on Terrestrial and Aquatic Ecosystems.pptx
Climate Change Impacts on Terrestrial and Aquatic Ecosystems.pptxClimate Change Impacts on Terrestrial and Aquatic Ecosystems.pptx
Climate Change Impacts on Terrestrial and Aquatic Ecosystems.pptxDiariAli
 
300003-World Science Day For Peace And Development.pptx
300003-World Science Day For Peace And Development.pptx300003-World Science Day For Peace And Development.pptx
300003-World Science Day For Peace And Development.pptxryanrooker
 
TransientOffsetin14CAftertheCarringtonEventRecordedbyPolarTreeRings
TransientOffsetin14CAftertheCarringtonEventRecordedbyPolarTreeRingsTransientOffsetin14CAftertheCarringtonEventRecordedbyPolarTreeRings
TransientOffsetin14CAftertheCarringtonEventRecordedbyPolarTreeRingsSérgio Sacani
 
Human & Veterinary Respiratory Physilogy_DR.E.Muralinath_Associate Professor....
Human & Veterinary Respiratory Physilogy_DR.E.Muralinath_Associate Professor....Human & Veterinary Respiratory Physilogy_DR.E.Muralinath_Associate Professor....
Human & Veterinary Respiratory Physilogy_DR.E.Muralinath_Associate Professor....muralinath2
 
Biogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune Waterworlds
Biogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune WaterworldsBiogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune Waterworlds
Biogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune WaterworldsSérgio Sacani
 
Digital Dentistry.Digital Dentistryvv.pptx
Digital Dentistry.Digital Dentistryvv.pptxDigital Dentistry.Digital Dentistryvv.pptx
Digital Dentistry.Digital Dentistryvv.pptxMohamedFarag457087
 
CYTOGENETIC MAP................ ppt.pptx
CYTOGENETIC MAP................ ppt.pptxCYTOGENETIC MAP................ ppt.pptx
CYTOGENETIC MAP................ ppt.pptxSilpa
 
PSYCHOSOCIAL NEEDS. in nursing II sem pptx
PSYCHOSOCIAL NEEDS. in nursing II sem pptxPSYCHOSOCIAL NEEDS. in nursing II sem pptx
PSYCHOSOCIAL NEEDS. in nursing II sem pptxSuji236384
 
Asymmetry in the atmosphere of the ultra-hot Jupiter WASP-76 b
Asymmetry in the atmosphere of the ultra-hot Jupiter WASP-76 bAsymmetry in the atmosphere of the ultra-hot Jupiter WASP-76 b
Asymmetry in the atmosphere of the ultra-hot Jupiter WASP-76 bSérgio Sacani
 
Atp synthase , Atp synthase complex 1 to 4.
Atp synthase , Atp synthase complex 1 to 4.Atp synthase , Atp synthase complex 1 to 4.
Atp synthase , Atp synthase complex 1 to 4.Silpa
 
Genetics and epigenetics of ADHD and comorbid conditions
Genetics and epigenetics of ADHD and comorbid conditionsGenetics and epigenetics of ADHD and comorbid conditions
Genetics and epigenetics of ADHD and comorbid conditionsbassianu17
 
Role of AI in seed science Predictive modelling and Beyond.pptx
Role of AI in seed science  Predictive modelling and  Beyond.pptxRole of AI in seed science  Predictive modelling and  Beyond.pptx
Role of AI in seed science Predictive modelling and Beyond.pptxArvind Kumar
 

Último (20)

Chemistry 5th semester paper 1st Notes.pdf
Chemistry 5th semester paper 1st Notes.pdfChemistry 5th semester paper 1st Notes.pdf
Chemistry 5th semester paper 1st Notes.pdf
 
Factory Acceptance Test( FAT).pptx .
Factory Acceptance Test( FAT).pptx       .Factory Acceptance Test( FAT).pptx       .
Factory Acceptance Test( FAT).pptx .
 
Module for Grade 9 for Asynchronous/Distance learning
Module for Grade 9 for Asynchronous/Distance learningModule for Grade 9 for Asynchronous/Distance learning
Module for Grade 9 for Asynchronous/Distance learning
 
module for grade 9 for distance learning
module for grade 9 for distance learningmodule for grade 9 for distance learning
module for grade 9 for distance learning
 
development of diagnostic enzyme assay to detect leuser virus
development of diagnostic enzyme assay to detect leuser virusdevelopment of diagnostic enzyme assay to detect leuser virus
development of diagnostic enzyme assay to detect leuser virus
 
Porella : features, morphology, anatomy, reproduction etc.
Porella : features, morphology, anatomy, reproduction etc.Porella : features, morphology, anatomy, reproduction etc.
Porella : features, morphology, anatomy, reproduction etc.
 
Human genetics..........................pptx
Human genetics..........................pptxHuman genetics..........................pptx
Human genetics..........................pptx
 
Climate Change Impacts on Terrestrial and Aquatic Ecosystems.pptx
Climate Change Impacts on Terrestrial and Aquatic Ecosystems.pptxClimate Change Impacts on Terrestrial and Aquatic Ecosystems.pptx
Climate Change Impacts on Terrestrial and Aquatic Ecosystems.pptx
 
300003-World Science Day For Peace And Development.pptx
300003-World Science Day For Peace And Development.pptx300003-World Science Day For Peace And Development.pptx
300003-World Science Day For Peace And Development.pptx
 
TransientOffsetin14CAftertheCarringtonEventRecordedbyPolarTreeRings
TransientOffsetin14CAftertheCarringtonEventRecordedbyPolarTreeRingsTransientOffsetin14CAftertheCarringtonEventRecordedbyPolarTreeRings
TransientOffsetin14CAftertheCarringtonEventRecordedbyPolarTreeRings
 
Human & Veterinary Respiratory Physilogy_DR.E.Muralinath_Associate Professor....
Human & Veterinary Respiratory Physilogy_DR.E.Muralinath_Associate Professor....Human & Veterinary Respiratory Physilogy_DR.E.Muralinath_Associate Professor....
Human & Veterinary Respiratory Physilogy_DR.E.Muralinath_Associate Professor....
 
Biogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune Waterworlds
Biogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune WaterworldsBiogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune Waterworlds
Biogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune Waterworlds
 
Digital Dentistry.Digital Dentistryvv.pptx
Digital Dentistry.Digital Dentistryvv.pptxDigital Dentistry.Digital Dentistryvv.pptx
Digital Dentistry.Digital Dentistryvv.pptx
 
CYTOGENETIC MAP................ ppt.pptx
CYTOGENETIC MAP................ ppt.pptxCYTOGENETIC MAP................ ppt.pptx
CYTOGENETIC MAP................ ppt.pptx
 
PSYCHOSOCIAL NEEDS. in nursing II sem pptx
PSYCHOSOCIAL NEEDS. in nursing II sem pptxPSYCHOSOCIAL NEEDS. in nursing II sem pptx
PSYCHOSOCIAL NEEDS. in nursing II sem pptx
 
Asymmetry in the atmosphere of the ultra-hot Jupiter WASP-76 b
Asymmetry in the atmosphere of the ultra-hot Jupiter WASP-76 bAsymmetry in the atmosphere of the ultra-hot Jupiter WASP-76 b
Asymmetry in the atmosphere of the ultra-hot Jupiter WASP-76 b
 
Atp synthase , Atp synthase complex 1 to 4.
Atp synthase , Atp synthase complex 1 to 4.Atp synthase , Atp synthase complex 1 to 4.
Atp synthase , Atp synthase complex 1 to 4.
 
Clean In Place(CIP).pptx .
Clean In Place(CIP).pptx                 .Clean In Place(CIP).pptx                 .
Clean In Place(CIP).pptx .
 
Genetics and epigenetics of ADHD and comorbid conditions
Genetics and epigenetics of ADHD and comorbid conditionsGenetics and epigenetics of ADHD and comorbid conditions
Genetics and epigenetics of ADHD and comorbid conditions
 
Role of AI in seed science Predictive modelling and Beyond.pptx
Role of AI in seed science  Predictive modelling and  Beyond.pptxRole of AI in seed science  Predictive modelling and  Beyond.pptx
Role of AI in seed science Predictive modelling and Beyond.pptx
 

MNE group analysis presentation @ Biomag 2016 conf.