I am working on Python 2.7
. I want to create nomograms based on the data of various variables in order to predict one variable. I am looking into and have installed PyNomo
package.
However, the from the documentation here and here and the examples, it seems that nomograms can only be made when you have equation(s) relating these variables, and not from the data. For example, examples here show how to use equations to create nomograms. What I want, is to create a nomogram from the data and use that to predict things. How do I do that? In other words, how do I make the nomograph take data as input and not the function as input? Is it even possible?
Any input would be helpful. If PyNomo cannot do it, please suggest some other package (in any language). For example, I am trying function nomogram
from package rms
in R
, but not having luck with figuring out how to properly use it. I have asked a separate question for that here.