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
110
0
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
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
240
Ferrari Driven Development: superfast Ruby with Rubex
v0dro
0
2.2k
Ruby Kaigi 2017 - C how to supercharge your Ruby with Rubex
v0dro
1
480
Deccan Ruby Conf 2017 Rubex intro
v0dro
0
120
Rubex: A new way of writing C extensions for CRuby
v0dro
1
590
Scientific Computing in Ruby at Ruby World Conference 2016
v0dro
0
160
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
140
Other Decks in Science
See All in Science
Conwayの法則を"ちゃんと"使うために — 原典でConwayは何を言っていたのか
bonotake
10
6k
機械学習 - 決定木からはじめる機械学習
trycycle
PRO
0
1.6k
不動産業界における業界特化のデータ整備とAI活用 ─Vertical DataとVertical AI─
estie
1
830
データベース08: 実体関連モデルとは?
trycycle
PRO
0
1.5k
先端因果推論特別研究チームの研究構想と 人間とAIが協働する自律因果探索の展望
sshimizu2006
3
960
データベース11: 正規化(1/2) - 望ましくない関係スキーマ
trycycle
PRO
0
1.5k
J-STAGE全文XML登載必須化について
xspa2012
0
1.2k
因果推論と機械学習
sshimizu2006
1
1.2k
CVPR2026_VGGTとその仲間たち
mickey_0226
0
1k
チュートリアル:世界モデル
hf149
0
2k
Kritische evaluatie van GenAI-output voor literatuuronderzoek
voginip
0
200
AI(人工知能)の過去・現在・未来 ~AIは人類を越えるのか~
tagtag
PRO
0
130
Featured
See All Featured
Taking LLMs out of the black box: A practical guide to human-in-the-loop distillation
inesmontani
PRO
3
2.3k
Data-driven link building: lessons from a $708K investment (BrightonSEO talk)
szymonslowik
1
1.2k
Sam Torres - BigQuery for SEOs
techseoconnect
PRO
0
440
jQuery: Nuts, Bolts and Bling
dougneiner
66
8.5k
brightonSEO & MeasureFest 2025 - Christian Goodrich - Winning strategies for Black Friday CRO & PPC
cargoodrich
3
760
Leveraging Curiosity to Care for An Aging Population
cassininazir
1
430
[RailsConf 2023] Rails as a piece of cake
palkan
59
6.8k
Optimising Largest Contentful Paint
csswizardry
37
3.8k
Building a A Zero-Code AI SEO Workflow
portentint
PRO
0
640
SERP Conf. Vienna - Web Accessibility: Optimizing for Inclusivity and SEO
sarafernandez
2
1.5k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
31
10k
Jamie Indigo - Trashchat’s Guide to Black Boxes: Technical SEO Tactics for LLMs
techseoconnect
PRO
0
530
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?