Commit Graph

384 Commits

Author SHA1 Message Date
kojix2
e11b5047af Add yx format
A new format option for barplot and lineplot.
Use when the first column is the label and the second column is the value.
2020-12-02 18:24:22 +09:00
kojix2
9658bfa71c Remove needless space 2020-11-25 17:34:50 +09:00
kojix2
f2bd99ed2e Add the Processing module (tentative) 2020-11-25 17:31:41 +09:00
kojix2
9849898cb1 Change the test directory from uplot to youplot 2020-11-25 17:21:01 +09:00
kojix2
1a3ad9553c Rename Preprocessing to DSVReader
* DSV stands for Delimiter-separated values.
* Preprocessing is too vague.
2020-11-25 17:19:07 +09:00
kojix2
ccf232a742 Pass standard input to standard output first 2020-11-25 15:52:24 +09:00
kojix2
eb13f2583f Support for encodings other than UTF-8 2020-11-23 23:52:14 +09:00
kojix2
1697360b6b Add MacOS to CI 2020-11-23 21:47:53 +09:00
kojix2
7034a83dea Add some basic tests 2020-11-23 21:35:32 +09:00
kojix2
a0c3863b4c Add barplot test 2020-11-23 20:09:32 +09:00
kojix2
0ff8c6a9f0 Start testing the command line interface 2020-11-23 17:14:43 +09:00
kojix2
7a08d6bab9 Provides a mechanism to switch back-end libraries 2020-11-23 15:02:53 +09:00
kojix2
b72f982618 Add youplot as an executable file 2020-11-23 13:46:33 +09:00
kojix2
e831fa93f4 Rename uplot to youplot 2020-11-23 13:23:59 +09:00
kojix2
d85be56521 Removed needless file 2020-11-23 11:50:22 +09:00
kojix2
5c59a77054 Update README
* Build status badge travis -> github actions
2020-11-19 22:58:09 +09:00
kojix2
8c78465ce9 Fix CI 2020-11-19 22:49:15 +09:00
kojix2
648e606ed4 Use Guthub Actions 2020-11-19 22:42:47 +09:00
kojix2
58ba6bb966 v0.2.8 2020-11-15 00:46:45 +09:00
kojix2
b4585b053a Fix comment 2020-11-15 00:43:13 +09:00
kojix2
19c3b0367a Rubocop auto correct 2020-11-15 00:43:00 +09:00
kojix2
159b90998b Improved main help menu 2020-11-15 00:29:20 +09:00
kojix2
a6ff1ebf2e show the help option on usage 2020-11-14 23:41:35 +09:00
kojix2
f8ea11f0d0 Improved help messages 2020-11-14 23:09:49 +09:00
kojix2
406fb80377
Improved README 2020-11-14 22:22:37 +09:00
kojix2
4d761dd0e7 Show barplot with line num as labels if 1 series 2020-11-13 11:22:36 +09:00
kojix2
471f0a907e Removed raw_inputs 2020-11-10 23:09:41 +09:00
kojix2
552756cadf Fix test 2020-11-08 12:22:47 +09:00
kojix2
4b4848438c Make sure the labels are String 2020-11-08 12:21:05 +09:00
kojix2
6f9c77f4fe Rename count -> count_values 2020-11-08 01:41:13 +09:00
kojix2
40304329bc
Update README.md 2020-11-06 10:37:29 +09:00
kojix2
2ecaa278c2
Update README
* How to show sub-coomand help
2020-11-06 10:29:17 +09:00
kojix2
3ab02e5a05
Update README.md 2020-11-06 10:23:44 +09:00
kojix2
2181e4a0f7 Fix color command option 2020-11-06 10:21:36 +09:00
kojix2
7fc7c797af Removed file name extensions 2020-11-06 10:00:55 +09:00
kojix2
942705ab23 Update help messages 2020-11-06 09:56:35 +09:00
kojix2
f7a7dcd1d4 Added that the command takes a file as an argument 2020-11-05 10:41:38 +09:00
kojix2
d085828883
Update README.md
* Added -e option to make the echo command work on both Mac and Ubuntu. (#1)
2020-11-04 16:08:34 +09:00
284km
93f8efc60a Output \n as a string in example code
Current output is:

$ echo "from numpy import random;" \
>      "n = random.randn(10000);"  \
>      "print('\n'.join(str(i) for i in n))"
from numpy import random; n = random.randn(10000); print('
'.join(str(i) for i in n))

After this change, I think it is originally expected string:

$ echo "from numpy import random;" \
>      "n = random.randn(10000);"  \
>      "print('\\\n'.join(str(i) for i in n))"
from numpy import random; n = random.randn(10000); print('\n'.join(str(i) for i in n))
2020-11-04 15:49:22 +09:00
kojix2
99e9e28ec9
Update README.md 2020-11-04 15:37:19 +09:00
kojix2
54e1865640
Update README.md 2020-10-13 18:40:56 +09:00
kojix2
00c2ce9b44 v0.2.7 2020-10-12 23:08:32 +09:00
kojix2
84196c197d Revert "Show message when No input data provided"
Uplot should expect cases where data takes a long time to reach the standard input.
This mechanism is not appropriate.

This reverts commit c40c59a21d.
2020-10-12 20:44:31 +09:00
kojix2
c40c59a21d Show message when No input data provided
Thank you csvkit developers
2020-10-12 17:10:25 +09:00
kojix2
c4f21df588 Show subcommand options ahead 2020-10-12 16:45:28 +09:00
kojix2
39166894a3 Improved help banner
Summary width 24
2020-10-12 16:14:51 +09:00
kojix2
7b8213833f
Removed 'under development' in README 2020-10-12 14:57:03 +09:00
kojix2
9090bbf51b
Fix help banner 2020-10-12 14:52:56 +09:00
kojix2
428d525c5f
Add sample codes to README 2020-10-12 14:24:02 +09:00
kojix2
6ebc707c51
Add images to README.md 2020-10-12 14:04:36 +09:00