# 📚 Reading Dashboard
---
## ✅ Read
```dataview
table author, rating, date_read, shelves
from "4. Archive/Bookshelf"
where status = "read"
sort date_read desc
```
---
## ⭐ Top Rated Books
```dataview
table author, rating, date_read
from "4. Archive/Bookshelf"
where rating >= 4
sort rating desc
```
---
## 📅 This Year
```dataview
table author, rating, date_read
from "4. Archive/Bookshelf"
where date_read >= date(2025-01-01)
```
---
## 📥 To-Read List
```dataview
table author, shelves
from "4. Archive/Bookshelf"
where status = "to-read"
sort title asc
```
---
## 🔖 Books by Shelf / Topic
```dataview
table author, rating
from "4. Archive/Bookshelf"
flatten shelves as shelf
group by shelf
```
---
## 📈 Reading Progress by Year
```dataview
table length(rows) as "Books", date_read.year() as "Year"
from "4. Archive/Bookshelf"
where status = "read"
group by date_read.year()
sort date_read.year() desc
```
---
## 📊 Summary Stats
```dataview
table length(rows) as "Books Read"
from "4. Archive/Bookshelf"
where status = "read"
```
```dataview
table avg(rating) as "Average Rating"
from "4. Archive/Bookshelf"
where status = "read"
```
---
## 🖼️ Books with Cover Images
```dataview
table cover, title, author, rating
from "4. Archive/Bookshelf"
where cover
```