My code gives me flat lines instead of a boxplot no matter what i do.
'''ggplot(testbp, aes(x = Dataset, y = Values, fill = Model)) +'''
'''geom_boxplot(varwidth = TRUE, alpha = 0.4)'''
Below image is the result of my code above with the flat lines
Below is my dataset i was working on
0 | Metric | Values | Model | Dataset |
1 | Precision | 98.74 | BiLSTM | USTC-TFC2016 |
2 | Precision | 99.11 | 1D-CNN | USTC-TFC2016 |
3 | Precision | 98.96 | LSTM | USTC-TFC2016 |
4 | Precision | 98.21 | RNN | USTC-TFC2016 |
5 | Precision | 98.71 | TCN | USTC-TFC2016 |
6 | Precision | 99.05 | TCN-ELU | USTC-TFC2016 |
7 | Precision | 99.74 | BiTCN | USTC-TFC2016 |
8 | Precision | 93.54 | BiLSTM | CTU |
9 | Precision | 94.20 | 1D-CNN | CTU |
10 | Precision | 93.09 | LSTM | CTU |
11 | Precision | 93.39 | RNN | CTU |
12 | Precision | 94.33 | TCN | CTU |
13 | Precision | 94.82 | TCN-ELU | CTU |
14 | Precision | 95.59 | BiTCN | CTU |