| 337 | } |
| 338 | |
| 339 | bool PlotMetadata(const QStringList &files, const QString &columns, bool show) |
| 340 | { |
| 341 | qDebug("Plotting %d metadata file(s) for columns %s", files.size(), qPrintable(columns)); |
| 342 | |
| 343 | RPlot p(files, "PlotMetadata"); |
| 344 | foreach (const QString &column, columns.split(";")) |
| 345 | p.file.write(qPrintable(QString("qplot(%1, %2, data=data, geom=\"violin\", fill=%1) + coord_flip() + theme_minimal()\nggsave(\"%2.pdf\")\n").arg(p.major.header, column))); |
| 346 | return p.finalize(show); |
| 347 | } |
| 348 | |
| 349 | bool PlotKNN(const QStringList &files, const File &destination, bool show) |
| 350 | { |
no test coverage detected