Skip to main content

One post tagged with "Array"

Array tag description

View All Tags

Vectorization by design

· 8 min read
Hategekimana Fabrice
IT trainer, Programming language designer

Introduction

Vectorization is one of the greatest tools for data manipulation I know and I am happy that R got this system out of the box. It makes computation simple and simplifies translation from formula to code.

Unfortunately I have encountered one limitation: R's vectors are not very compatible with functional programming or object-oriented programming, two paradigms I like when building libraries or applications. This is what TypR's vectorization is improving with the mechanism of lifting-based vectorization.