Little useless-useful R functions – Function for faster reading with Bionic Reading
This article is originally published at https://tomaztsql.wordpress.com
Trick your brain into faster reading with the help of Bionic Reading. With the help of highlighting part of the words, it “guides your eyes over the text and the brain remembers previously learned words more quickly.” (source: br-about)
Here is a beautiful example of how text with the use of opacity, colours, size and many other elements can be quickly achieved for faster reading.

The vanilla output of the R language is slightly limited in terms of output in R Studio, but it can be done using some colours and text size. For the sample text, I will use the one from the image:
sample_text <- "
Bionic Reading is a new method
facilitating the reading process
by guiding the eyes through
text with artificial fixation points.
As a result, the reader is only
focusing on the highlighted
initial letters and lets the brain
center complete the word.
In a digital world dominated
by shallow forms of reading,
Bionic Reading aims to
encourage a more in-depth
reading and understanding
of written content.
"
And the function is straightforward:
Make_text_easier_to_read <- function(input_text){
bold <- "\033[1m"
underline <- "\033[4m"
reset <- "\033[0m"
blue <- "\033[34m"
modify_word <- function(word) {
word_length <- nchar(word)
first_half <- substr(word, 1, ceiling(word_length / 2))
first_half_bold <- paste0(bold, first_half, reset)
second_half <- substr(word, ceiling(word_length / 2)+1, word_length)
second_half_bold <- paste0(blue, second_half, reset)
final_word <- paste0(first_half_bold, second_half_bold)
return(final_word)
}
words <- unlist(strsplit(sample_text, " "))
modified_words <- sapply(words, modify_word)
formatted_text <- paste(modified_words, collapse = " ")
cat(formatted_text, "\n")
}
For the comparison of the text, here is an example:
#simple text
cat("\033[34m", sample_text, "\033[0m", "\n")
# run the function
Make_text_easier_to_read(sample_text)
On the left-hand side is the normal text and on the right-hand side are the bolded parts of the words for faster reading.
As always, the complete code is available on GitHub in Useless_R_function repository. The sample file in this repository is here (filename: Bionic_reading.R). Check the repository for future updates.
Happy R-coding and stay healthy!
Disclaimer: This blog post has not been sponsored by the owners of the product or patent. It is also not affiliated with the company. I personally like the concept and idea, and therefore, I decided to write the function. If you wish to download their product, here is the link!
Thanks for visiting r-craft.org
This article is originally published at https://tomaztsql.wordpress.com
Please visit source website for post related comments.