Tag: analysis
-
Calculating Conditional Entropy in R
conditionalEntropy <- function( graph ) { # graph is a 2 or 3 column dataframe if (ncol(graph) == 2 ) { names(graph) <- c(“from”,”to”) graph$weight <- 1 } else if (ncol(graph) == 3) names(graph) <- c(“from”,”to”,”weight”) max <- length(rle(paste(graph$from, graph$to))$values) …
-
The Lambert Effect – Subtleties in Cloud Modeling
After you’ve done all of the hard work in creating the perfect model that fits your data comes the hard part: does it make sense? Have you overly fitted your data? Are the results confirming or surprising? If surprising, is that because there’s a surprise or your model is broken? Here’s an example: iterating on…
-
Determining Application Performance Profiles in the Cloud
I want to know how to characterize my workloads in the cloud. With that, I should be able to find systems both over-provisioned and resource starved to aid in right-sizing and capacity planning. CloudForms by Red Hat can do these at the system level, which is where you would most likely take any actions, but I want…
-
Analyzing Cloud Performance with CloudForms and R
CloudForms by Red Hat has extensive reporting and predictive analysis built into the product. But what if you already have a reporting engine? Or want to do analysis not already built into the system? This project was created as an example of using Cloud Forms with external reporting tools (our example uses R). Take special care that you can miss context to…