MCPcopy Create free account
hub / github.com/biometrics/openbr / PlotMetadata

Function PlotMetadata

openbr/core/plot.cpp:339–347  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

337}
338
339bool 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
349bool PlotKNN(const QStringList &files, const File &destination, bool show)
350{

Callers 1

br_plot_metadataFunction · 0.85

Calls 3

sizeMethod · 0.45
writeMethod · 0.45
finalizeMethod · 0.45

Tested by

no test coverage detected