Thankyou Mr.Waldemar. Gnuplot is a poting tool, but my question is how to get TPR and FPR values from confusion matrices to draw a ROC curve without prediction probabilities.
To my point of view ROC helps mostly for binary classification analysis.
However, there are various ways to plot it for multi-label case, too. For python, you have a nice example in scikit-learn, which uses averaging trick. See example with code here: http://scikit-learn.org/stable/auto_examples/model_selection/plot_roc.html
In my case, I have a multi class matrix confusion and I plot a curve for each class in the same plot. You would check this paper with an approach by pairwise analysis.