ggplot2 each group consists of only one observation

后端 未结 2 1798
说谎
说谎 2020-12-15 18:33

I am trying to plot the graph using ggplot2

So I have the following dataframe:

   iter        se perf name
1    V1 0.6463573 12.8    e
2    V2 0.3265         


        
2条回答
  •  再見小時候
    2020-12-15 18:52

    check whether the data type is factor by using is.factor(x), if it is TRUE, then use as.integer function.

提交回复
热议问题