Description
About some Small Functions.
Description
The solution to some common problems is proposed, as well as a summary of some small functions. In particular, it provides a useful function for some problems in chemistry. For example, monoa(), monob() and mono() function can be used to calculate The pH of weak acid/base. The ggpng() function can save the PNG format with transparent background. The period_table() function will show the periodic table. Also the show_ruler() function will show the ruler. The show_color() function is funny and easier to show colors. I also provide the symb() function to generate multiple symbols at once. The csv2vcf() function provides an easy method to generate a file. The sym2poly() and sym2coef() function can extract coefficients from polynomials.
README.md
ch
The goal of ch is to solve some questions.
Installation
You can install ch :
install.packages('ch')
# or from github
devtools::install_github('tsiamut/ch')
Example
This is a basic example which shows you how to solve a common problem:
library(ch)
#basic example code
# You can draw a ruler:
draw_ruler(5)
## And even draw the periodic table.
period_table()
show_color(colors())
sym2poly('x*4 + x^4 + 5*x^7 + x*x^9')