Skip to content
Home » how to » Page 20

how to

Fixing Kibana error ‘Error in visualization – Cannot read property of undefined’

Kibana is a great tool, with corporate-level user management, to visualize data from the Elasticsearch stack. Given the highly customizeable user roles, it’s easy to run into errors that appear to be gibberish. Here’s an example: Error in VisualizationCannot read property ‘x’ of undefined It seems to not make a… 

Removing Ï.., I and two dots or umlaut, when using read.csv in R

Here’s something I used to bump in a lot when working with external files that I receive from clients: some gibberish prepended to the first column name of a data frame when using read.csv. However, there’s a good reason why this happens. The first character is a magical character, invisible… 

randomForest gives NA/NaN/Inf in foreign function call and how to solve it

Personally, Random Forest is one of my favorite algorithms for supervised learning. It’s quick and dirty and still allows for some interpretation. However, R and the RandomForest package are somewhat cryptic when it comes to requirements not met to properly train the algorithm. I bumped a lot into this error…