This repository has been archived by the owner on Nov 16, 2023. It is now read-only.
Releases: nachocab/clickme
Releases · nachocab/clickme
v0.6.0
I have a tentative goal to completely rewrite clickme, but meanwhile here are a few useful additions to the Points template:
- The search bar functionality has been expanded.
- You can now search using regular expressions (Javascript style).
- You can also search the extra fields by putting a conditional expression between colons.
:extra_field_1 > 5:
or:x == 'a'
- You can search for multiple points at the same time by separating them with commas. Spaces and quotes are automatically removed
point_1,point_4, "point_5"
- To improve performance, if you have more than 10,000 points searching will not be done automatically, and you'll have to press
Enter
to see the results.
- Hidden keyboard shortcuts
- You can toggle the display of the 'Show names' panel by pressing the
h
key - You can toggle the display of matched point names by pressing the
n
key
- You can toggle the display of the 'Show names' panel by pressing the
v0.5.0
- Fixed iframe/link bug on windows
- Axes titles are now hidden when not specified. You can specify them with
x_title
andy_title
. - Added
x_format
andy_format
to format the tick numbers in the axes. The syntax isclickme(1:1000, x_format = "s", y_format = ".2f")
. Check out the format specification. - Added
x_jitter
andy_jitter
to distinguish between jitter in the x and y axes.
TODO: update documentation
0.4.0
- Added the lines template
- You only need to specify the name of the template if you want to use a different one. The points template is the default, so you don't need to specify it after you load clickme. For example:
clickme(1:10) # produces points
clickme("lines", 1:10) # produces lines and changes current template
clickme(1:10) # produces lines
- Added new
clickme_hide
boolean option to avoid opening a new browser tab when creating a new plot (this is useful in combination with LiveReload or similar browser extensions). Set it withoptions(clickme_hide=TRUE)
. You can still show the plot manuallycm(1:10)$show()
- Lots of bug fixes.
0.3.1
0.3.0
- Major rewrite. Only the Points template has been updated.