Skip to content

Instantly share code, notes, and snippets.

View luccitan's full-sized avatar

Tanguy Lucci luccitan

  • SAP
  • Lyon
  • 13:46 (UTC +02:00)
View GitHub Profile
@luccitan
luccitan / notebook.Rmd
Created June 20, 2018 11:51
Introductory tutorial to text clustering with R
---
title: "Introductory tutorial to text clustering with R"
output:
html_document:
df_print: paged
---
```{r Initializing the script}
# Loading the packages that will be used
list.of.packages <- c("tm", "dbscan", "proxy", "colorspace")
@luccitan
luccitan / PanAndZoomSVG.jsx
Last active December 23, 2016 12:20
React Pan & Zoom SVG template
/** Imports logic there */
export default class PanAndZoomSVG extends React.Component {
constructor(props) {
super(props);
this.state = {
cursor: { x: 0, y: 0 },
translate: { x: 0, y: 0 },
scale: 1,