Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Releases: nachocab/clickme

v0.6.0

13 Feb 22:21
Compare
Choose a tag to compare

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

v0.5.0

19 Jun 17:50
Compare
Choose a tag to compare
  • Fixed iframe/link bug on windows
  • Axes titles are now hidden when not specified. You can specify them with x_title and y_title.
  • Added x_format and y_format to format the tick numbers in the axes. The syntax is clickme(1:1000, x_format = "s", y_format = ".2f"). Check out the format specification.
  • Added x_jitter and y_jitter to distinguish between jitter in the x and y axes.

TODO: update documentation

0.4.0

02 Apr 16:40
Compare
Choose a tag to compare
  • 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 with options(clickme_hide=TRUE). You can still show the plot manually cm(1:10)$show()
  • Lots of bug fixes.

0.3.1

14 Sep 00:53
Compare
Choose a tag to compare
  • Added option to toggle one or all color groups
  • Added option to change font
  • fixed bug when more than 20 color groups were needed
  • allowed NAs as input

0.3.0

24 Jul 17:26
Compare
Choose a tag to compare