FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
bashplotlib/bashplotlib/utils/commandhelp.py at master · gustavocarita/bashplotlib · GitHub
gustavocarita
/
bashplotlib
Public
forked from
glamp/bashplotlib
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
bashplotlib
/
bashplotlib
/
utils
/
commandhelp.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
28 lines (23 loc) · 951 Bytes
Breadcrumbs
bashplotlib
/
bashplotlib
/
utils
/
commandhelp.py
Copy path
File metadata and controls
28 lines (23 loc) · 951 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Usage messages for bashplotlib system commands
"""
hist
=
{
"usage"
:
"""hist is a command for making histograms. it accepts a series of values in one of the following formats:
1) txt file w/ 1 column of numbers
2) standard in piped from another command line cat or curl
for some examples of how to use hist, you can type the command:
hist --demo
or visit https://github.com/glamp/bashplotlib/blob/master/examples/sample.sh
"""
}
scatter
=
{
"usage"
:
"""scatterplot is a command for making xy plots. it accepts a series of x values and a series of y values in the
following formats:
1) a txt file or standard in value w/ 2 comma seperated columns of x,y values
2) 2 txt files. 1 w/ designated x values and another with designated y values.
scatter -x <xcoords> -y <ycoords>
cat <file_with_x_and_y_coords> | scatter
"""
}
Back
|
FazBrowse Home
|
New Git URL