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
Sponsored
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
Sameer Deshmukh
June 29, 2016
Science
110
0
Share
Webinar - Scientific Computing and Data Visualization
Webinar for Srijan Technologies on scientific computing and data visualization in Ruby.
Sameer Deshmukh
June 29, 2016
More Decks by Sameer Deshmukh
See All by Sameer Deshmukh
XND and rubyplot - typed arrays and visualization in Ruby
v0dro
0
230
Ferrari Driven Development: superfast Ruby with Rubex
v0dro
0
2.2k
Ruby Kaigi 2017 - C how to supercharge your Ruby with Rubex
v0dro
1
460
Deccan Ruby Conf 2017 Rubex intro
v0dro
0
110
Rubex: A new way of writing C extensions for CRuby
v0dro
1
580
Scientific Computing in Ruby at Ruby World Conference 2016
v0dro
0
150
Scientific Computing in Ruby at Ruby World Conference 2016.
v0dro
1
240
Data Analysis in RUby with daru
v0dro
3
3.7k
Introduction benchmark-plot at PRUG
v0dro
0
130
Other Decks in Science
See All in Science
Testing the Longevity Bottleneck Hypothesis
chinson03
0
290
20251212_LT忘年会_データサイエンス枠_新川.pdf
shinpsan
0
290
知能とはなにかーヒトとAIのあいだー
tagtag
PRO
0
200
フィードフォワードニューラルネットワークを用いた記号入出力制御系に対する制御器設計 / Controller Design for Augmented Systems with Symbolic Inputs and Outputs Using Feedforward Neural Network
konakalab
0
130
(2025) Balade en cyclotomie
mansuy
0
560
データベース03: 関係データモデル
trycycle
PRO
1
500
Vibecoding for Product Managers
ibknadedeji
0
160
ハミルトン・ヤコビ方程式の解の性質と物理的意味
enakai00
0
410
TypeScript で WebAssembly を用いた 型安全なプラグイン設計
nagano
1
200
AIPシンポジウム 2025年度 成果報告会 「因果推論チーム」
sshimizu2006
3
500
水耕栽培:古代の知恵から宇宙農業まで
grow_design_lab
0
120
AkarengaLT vol.41
hashimoto_kei
1
140
Featured
See All Featured
How to Think Like a Performance Engineer
csswizardry
28
2.6k
A better future with KSS
kneath
240
18k
We Analyzed 250 Million AI Search Results: Here's What I Found
joshbly
1
1.3k
Navigating Algorithm Shifts & AI Overviews - #SMXNext
aleyda
1
1.2k
Optimising Largest Contentful Paint
csswizardry
37
3.7k
Speed Design
sergeychernyshev
33
1.7k
Data-driven link building: lessons from a $708K investment (BrightonSEO talk)
szymonslowik
1
1.1k
Ethics towards AI in product and experience design
skipperchong
2
280
My Coaching Mixtape
mlcsv
0
130
Dominate Local Search Results - an insider guide to GBP, reviews, and Local SEO
greggifford
PRO
0
170
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
21
1.5k
Agile Leadership in an Agile Organization
kimpetersen
PRO
0
150
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?