Questions tagged [graph]
A graph is a visual representation tool through which information is more easily understood than with a block of text or/and statistics.
23 questions
1
vote
2
answers
142
views
How to filter paths through a digraph by whether any of the node names contain a keyword?
gvpr can filter graphs, but its language is obtuse and I could not find a lot of examples. Is there some way to traverse all possible paths from all root nodes (one in my case, if that makes any ...
0
votes
1
answer
473
views
how to generate a flamegraph when using jeprof
I am using this command to generate jemolloc output svg file:
jeprof --svg texhub-server --base=texhub.out.1.0.i0.heap texhub.out.1.* > output.svg
I read document from here(https://github.com/...
1
vote
1
answer
340
views
Remove Unused Data Range-Libre Office Calc (Line Chart)
I'm creating a line chart with Libre Office Calc. All of the number values stay within a high range, so when I create the chart, there is a large gap of unused data on the bottom of the chart, and its ...
1
vote
1
answer
301
views
How do I display a graph in root with Linux on chromebook?
I am extremely new to Linux and I'm using the Chromebook's Linux beta which I believe is ubuntu. I'm trying to use CERN's root software to display a function's graph but it gives me a massive error ...
1
vote
0
answers
259
views
Display a bash script and all its functions in a visual way
Is there a tool (general or bash / shell specific) that can display a code into in clean visual representation of the functions.
Like a visual algorithm with bubbles with the name of the functions ...
1
vote
1
answer
190
views
Transformation of output of CPU usage
How to convert output of this command ps aux | awk 'NR>1{tot[$3]++;} END{for(id in tot)printf "%s %s\n",id,tot[id]}' into pie chart.
I have tried to make changes in the following pie script using ...
1
vote
1
answer
349
views
Drilling down in graphs to see individual processes
Are there any system monitoring tools like Munino or Observium, where you can drill down in a graph to see individual processes?
Like say if there's a graph of CPU usage, is it possible to click on ...
1
vote
1
answer
459
views
Graph gateway in/out traffic per client
tl;dr: Suppose I have a list of LAN clients (ip/macaddress/name); how would I best go about graphing the traffic going in/out of my OpenBSD 6.1 gateway?
In my network everything going in/out of it ...
3
votes
2
answers
181
views
Graph renderering in linux
I have been using graphviz together with dot for quite some time. But I am always overwhelmed, when it comes to bigger graphs, because the automatic adjustment of the boxes, rectangles, nodes, arrows ...
1
vote
0
answers
42
views
how to have a chart from only one page of multi-sheet .ods file?
I downloaded Visa stats from EU site which were unfortunately in .xlsx (MS-Excel) format. I used calligrasheets to transform the .xlsx to .ods sheet and was able to open the same in libreoffice. The ...
5
votes
1
answer
2k
views
How do I add color to a graphviz graph node?
Here is the code for the graph I currently have:
graph Budget {
Country_Budget -- Profit_and_Loss_Account [type=s];
Country_Budget -- Balance_Sheet [type=s];
Profit_and_Loss_Account -- ...
1
vote
0
answers
258
views
How can I export the data from a LibreOffice Writer graph to e.g. Calc?
I have a LibreOffice Writer document (.odt; originally .docx) with a simple 2D graph containing one line. If I right-click on the graph and choose Edit, then right-click again and select Data Table, ...
1
vote
3
answers
2k
views
ksar (a sar grapher) development stopped 2013 - no RHEL 7x compatibility - any alternative? [closed]
Ksar is a BSD licensed Java based application to create graph of all
parameters from the data collected by Unix sar utilities. Usually Unix
sar is part of Unix' sysstat package and run sa1, sa2, ...
0
votes
1
answer
4k
views
CPU graph not functioning properly
My conky's cpu graph appears to not be functioning properly. It is just a block as per the screenshot that does not respond to actual cpu usage. Kind of annoying. I have also attached my conkyrc. I ...
0
votes
1
answer
782
views
gnuplot to show lables without . values
I have a graph in gluplot which shows downloads per day for the month. The labels are values like
2500.35
1500.15
6000.45
How can I remove values after the . (dot) so that it only prints this:
2500
...