fcmlcode
fcmlcode copied to clipboard
Results
8
fcmlcode issues
Sort by
recently updated
recently updated
newest added
Hi, I recently bought the book, but I'm struggling to find where the associated Python code is. It looks like this repo is a start but is incomplete - has...
In plotcc.R file in the folder R/chapter5/, you have used: ``` contour(gridvalsX,gridvalsY,matrix(Probs,nrow=dim(Xv)[[1]],ncol=dim(Xv)[[2]],byrow=TRUE),add=TRUE) ``` However, it should be: ``` contour(gridvalsX,gridvalsY,matrix(Probs,nrow=dim(Xv)[[2]],ncol=dim(Xv)[[1]],byrow=TRUE),add=TRUE) ``` That is because in the meshgrid output, the rows of...