Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Webinar - Scientific Computing and Data Visuali...
Search
Sameer Deshmukh
June 29, 2016
Science
0
83
Webinar - Scientific Computing and Data Visualization
Webinar for Srijan Technologies on scientific computing and data visualization in Ruby.
Sameer Deshmukh
June 29, 2016
Tweet
Share
More Decks by Sameer Deshmukh
See All by Sameer Deshmukh
XND and rubyplot - typed arrays and visualization in Ruby
v0dro
0
190
Ferrari Driven Development: superfast Ruby with Rubex
v0dro
0
1.9k
Ruby Kaigi 2017 - C how to supercharge your Ruby with Rubex
v0dro
1
400
Deccan Ruby Conf 2017 Rubex intro
v0dro
0
83
Rubex: A new way of writing C extensions for CRuby
v0dro
1
470
Scientific Computing in Ruby at Ruby World Conference 2016
v0dro
0
110
Scientific Computing in Ruby at Ruby World Conference 2016.
v0dro
1
210
Data Analysis in RUby with daru
v0dro
3
3.4k
Introduction benchmark-plot at PRUG
v0dro
0
85
Other Decks in Science
See All in Science
【健康&筋肉と生産性向上の関連性】 【Google Cloudを企業で運用する際の知識】 をお届け
yasumuusan
0
520
大規模言語モデルの論理構造の把握能力と予測モデルの生成
fuyu_quant0
0
120
システム数理と応用分野の未来を切り拓くロードマップ・エンターテインメント(スポーツ)への応用 / Applied mathematics for sports entertainment
konakalab
1
230
トラブルがあったコンペに学ぶデータ分析
tereka114
2
1.5k
Improving Search @scale with efficient query experimentation @BerlinBuzzwords 2024
searchhub
0
280
創薬における機械学習技術について
kanojikajino
16
5.1k
Trend Classification of InSAR Displacement Time Series Using SAE–CNN
satai
3
270
大規模言語モデルの開発
chokkan
PRO
86
45k
04_石井クンツ昌子_お茶の水女子大学理事_副学長_D_I社会実現へ向けて.pdf
sip3ristex
0
280
応用心理学Ⅰテキストマイニング講義資料講義編(2024年度)
satocos135
0
120
01_篠原弘道_SIPガバニングボード座長_ポスコロSIPへの期待.pdf
sip3ristex
0
300
(論文読み)贈り物の交換による地位の競争と社会構造の変化 - 文化人類学への統計物理学的アプローチ -
__ymgc__
1
200
Featured
See All Featured
The Cult of Friendly URLs
andyhume
78
6.3k
4 Signs Your Business is Dying
shpigford
183
22k
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
135
33k
Designing for humans not robots
tammielis
252
25k
Bootstrapping a Software Product
garrettdimon
PRO
307
110k
XXLCSS - How to scale CSS and keep your sanity
sugarenia
248
1.3M
The Invisible Side of Design
smashingmag
299
50k
What’s in a name? Adding method to the madness
productmarketing
PRO
22
3.4k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
29
2k
Fontdeck: Realign not Redesign
paulrobertlloyd
83
5.5k
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
22
2.6k
10 Git Anti Patterns You Should be Aware of
lemiorhan
PRO
656
60k
Transcript
Scientific Computation and Data Visualization in Ruby @srijan #SrijanWW
Sameer Deshmukh github.com/v0dro @v0dro @srijan #SrijanWW
Ruby Science Foundation www.sciruby.com @sciruby @sciruby @srijan #SrijanWW
@srijan #SrijanWW
iruby notebook @srijan #SrijanWW
Browser based Ruby REPL for interactive computing. @srijan #SrijanWW
Runs in your browser Input cell – accepts Ruby code
Output cell – can render HTML/CSS/JS @srijan #SrijanWW
@srijan #SrijanWW
nmatrix @srijan #SrijanWW
ndimensional array object. Interface Ruby with high speed C libraries.
@srijan #SrijanWW
require 'nmatrix' n = NMatrix.new( [2,2], [1,2,3,4], dtype: :float32, stype:
:dense ) n[0,1] # => 2.0 @srijan #SrijanWW
Data Types :int8 :float32 :int16 :float64 :int32 :complex64 :int64 :complex128
@srijan #SrijanWW
Storage types Dense Dense matrix. List Sparse matrix type storing
data as a linked list. Yale Sparse type storing data in the 'New Yale' format. @srijan #SrijanWW
NMatrix C API @srijan #SrijanWW
nmatrix nmatrix atlas nmatrix lapacke nmatrix fftw gsl @srijan #SrijanWW
nmatrix is coming to jruby! @srijan #SrijanWW
nyaplot @srijan #SrijanWW
interactive plotting tool for Rubyists. @srijan #SrijanWW
interactive HTML and JavaScript plots that can be displayed in
your browser. @srijan #SrijanWW
@srijan #SrijanWW
Mapnya Nyaplot3D Bionya Map visualizations with inbuilt country charts. Three
Dimensional interactive plots. Biology plots for visualizing relationships of genes. @srijan #SrijanWW
gnuplotrb @srijan #SrijanWW
Ruby wrapper over GNU Plot. Convieniently exposes all GNU Plot
functions through Ruby. @srijan #SrijanWW
require 'gnuplotrb' plot = GnuplotRB::Plot.new( [ [1,2.5,1.5,4], with: 'linespoints' ]
) @srijan #SrijanWW
@srijan #SrijanWW
require 'gnuplotrb' plot = GnuplotRB::Plot.new( [ [1,2.5,1.5,4], with: 'linespoints' ],
[ [2,3,4.3,3], with: 'lines' ] ) @srijan #SrijanWW
@srijan #SrijanWW
statsample @srijan #SrijanWW
@srijan #SrijanWW library for statistical analysis and modelling.
@srijan #SrijanWW Extensions for Generalized Linear Models and TimeSeries apart
from statistical tests and models.
daru (Data Analysis in RUby) @srijan #SrijanWW
daru == (Hindi) ददार @srijan #SrijanWW
library for analysis, cleaning, manipulation and visualization of data. @srijan
#SrijanWW
Read/write many data sources Ephemeral statistics functions Works well with
'wild' data Data indexing @srijan #SrijanWW
Acts as glue between other SciRuby libraries. @srijan #SrijanWW
Daru::Vector Heterogenous Array that can be indexed on any Ruby
object. Name Label(0) Label(1) Label(2) ... Label(n-1) @srijan #SrijanWW
Daru::DataFrame 2D spreadsheet like data structure indexed by rows or
columns. Col0 Label(0) Label(1) Label(2) ... Label(n-1) Col1 Col2 Col(n-1) .... @srijan #SrijanWW
Thank You Twitter: @v0dro GitHub: @v0dro @srijan #SrijanWW
Any questions?