author
Publish Date / Update Date

Dijkstra's Algorithm

Dijkstra's Algorithm is a method for finding the shortest path between nodes in a graph. It was originally designed to find the shortest path between two points, but was later extended to find the shortest paths from a fixed point to all other points, forming what is called a "shortest path tree".

Add Related Posts to Articles in the LoveIt Theme

Introduction

Recently, while reading articles, I noticed that it’s quite troublesome to find similar posts after finishing one. While researching, I also saw that many websites have sections like “Related Posts” or “You May Also Like,” which inspired me to create a “Related Posts” section on my personal site.

Since it’s about related posts, we need a way to determine which ones are similar, right? But re-tagging all posts or going through the trouble of using a classification model seems exhausting (or just plain silly?). Then I realized my articles already use tags and categories. So I thought: “Why not make use of what’s already there?” That’s why I decided to use existing metadata for classification.

Below is a guide on how to add a “Related Posts” section to each article.

Common Distance Measures

Cover image generated by ChatGPT.

Introduction

How to calculate distance is an important aspect of modern statistical analysis. Choosing different distance metrics may lead to different results in statistical analysis methods. The following introduces commonly used distance metrics.

[Thought] The 34th South Taiwan Statistics Conference

Anscombe's Quartet

The cover image about Anscombe’s Quartet was generated by ChatGPT, and it used the following prompt: “The digital design highlights the title ‘Anscombe’s Quartet’ in bold, white sans-serif letters, centered against a dynamic abstract backdrop. The image is split into four colorful quadrants, each showcasing unique textures and patterns—ranging from painterly hues and curved lines to scattered circles and dots.”

Introduction

While listening to a presentation today, I happened to hear a term——Anscombe’s Quartet, a term I had never encountered before, yet it has significant implications in both statistics and data visualization.

Introduction to Perceptron

The Perceptron is one of the earliest models of artificial neural networks and laid the foundation for modern machine learning, often regarded as the 'ancestor' of neural networks. It performs simple binary classification tasks and mathematically simulates the logic of how neurons operate. Even today, it is frequently used as a teaching example for beginners in machine learning.