-->

mlampros Organizing and Sharing thoughts, Receiving constructive feedback

Digital Elevation Models using the 'CopernicusDEM' R package

In this blog post I’ll explain how to use the CopernicusDEM R package based on a use case of the Movebank animal tracking data. I picked animal tracking data because there is an abundance in the Movebank archive from all over the world. In this specific vignette I’ll use data of Wolves from the northeastern Alberta and Caribou from the British Columbia (see the reference papers at the end of the blog post for more information).


Continue reading...

Fitbit Visualizations using the 'fitbitViz' R package

This blog post explains the functionality of the fitbitViz R package. If you own any of the Fitbit activity trackers you can take advantage of this package to visualize your data using ‘ggplot2’, ‘Leaflet’ and 3-dimensionsal ‘Rayshader’ Maps. The 3-dimensional Rayshader Map requires the installation of the CopernicusDEM R package which includes the 30- and 90-meter elevation data. You can read more about the Fitbit Web API and how to create an application to receive a token and the user-id in the README.md file of the package. In the README.md file you will find information on how to,


Continue reading...

Language Identification using the 'fastText' package (a Benchmark)

In this blog post, I’ll explain how to perform Language Identification with the fastText R package and I’ll create a benchmark by including other language identification R packages, i.e.

  • cld2, R Wrapper for Google’s Compact Language Detector 2
  • cld3, Bindings to Google’s Compact Language Detector 3
  • textcat, N-Gram Based Text Categorization
  • franc, Port of the JavaScript ‘franc’, Detect the Language of Text

Continue reading...

fastText ( updated version )

In this blog post, I’ll explain the updated version of the fastText R package. This R package is an interface to the fasttext library for efficient learning of word representations and sentence classification. Back in 2016 I ported for the first time the fasttext library but it had restricted functionality. This updated version allows the user to take advantage of all current features and it adds new ones such as plotting of loss, learning-rate and word-counts.


Continue reading...

Image segmentation based on Superpixels and Clustering

In this blog post, I’ll explain the new functionality of the OpenImageR package, SLIC and SLICO superpixels (Simple Linear Iterative Clustering) and their applicability based on an IJSR article. The author of the article uses superpixel (SLIC) and Clustering (Affinity Propagation) to perform image segmentation. The article was reproduced (and extended with Kmeans) using the latest versions of the OpenImageR and ClusterR packages.


Continue reading...