Week 12: Creating an R Markdown File for Alignment Score Visualization Creating the R Markdown file "Alignment Score Visualization" was a great learning experience. It allowed me to combine R code, text, and visuals in one document, which is both easy to read and share. Here’s what I learned and how it went: Getting Started At first, R Markdown felt a bit confusing because it combines text and code in one file. But once I understood the structure, it became clear how powerful it is. The key was using code chunks, which are sections of the file that run the R code. Each chunk starts with ```{r} and ends with ``` . For my project, I wanted to display alignment scores for V and J regions in a table and a bar chart. Writing and organizing the code into chunks made it easy to run and test each part. Challenges I Faced Code Showing as Plain Text : When I first tried knitting the file, the HTML output only showed the code as plain text. I realized this was because I had included...