Here's what's going on. Consider the query piece by piece and what MySQL is processing as it goes.
First, you're selecting from items (select i.item_id, i.item_name, avg(ir.rating) from Items i):
+---------+-----------+
| item_id | item_name |
+---------+-----------+
| 1 | Item 1 |
| 1 | Item 1 |
| 2 | Item 2 |
| 3 | Item 3 |
| 4 | Item 4 |
| 5 | Item 5 |
+---------+-----------+
Then you are left joining the ratings (left join ItemRating ir ON ir.item_id = i.item_id):
+---------+-----------+-----------+------------+
| item_id | item_name | ir.rating | ir.item_id |
+---------+-----------+-----------+------------+
| 1 | Item 1 | 9 | 1 |
| 1 | Item 1 | 6 | 1 |
| 2 | Item 2 | NULL | NULL |
| 3 | Item 3 | 10 | 3 |
| 4 | Item 4 | NULL | NULL |
| 5 | Item 5 | NULL | NULL |
+---------+-----------+-----------+------------+
Finally, you are grouping by rating (group by ir.item_id). This will return one row for each unique ir.item_id. There are three unique ir.item_ids (as you can see in the last column there): 1, and NULL, and 3. For each of these, it returns one row and averages the rating.
So, for 1 we have:
+---------+-----------+-----------+------------+
| item_id | item_name | ir.rating | ir.item_id |
+---------+-----------+-----------+------------+
| 1 | Item 1 | 9 | 1 |
| 1 | Item 1 | 6 | 1 |
+---------+-----------+-----------+------------+
Which collapses into:
+---------+-----------+----------------+------------+
| item_id | item_name | avg(ir.rating) | ir.item_id |
+---------+-----------+----------------+------------+
| 1 | Item 1 | 7.5 | 1 |
+---------+-----------+----------------+------------+
For NULL we have:
+---------+-----------+-----------+------------+
| item_id | item_name | ir.rating | ir.item_id |
+---------+-----------+-----------+------------+
| 2 | Item 2 | NULL | NULL |
| 4 | Item 4 | NULL | NULL |
| 5 | Item 5 | NULL | NULL |
+---------+-----------+-----------+------------+
Which collapses into:
+---------+-----------+----------------+------------+
| item_id | item_name | avg(ir.rating) | ir.item_id |
+---------+-----------+----------------+------------+
| 2| Item 2 | NULL | NULL |
+---------+-----------+----------------+------------+
For 3 we have:
+---------+-----------+-----------+------------+
| item_id | item_name | ir.rating | ir.item_id |
+---------+-----------+-----------+------------+
| 3 | Item 3 | 10 | 3 |
+---------+-----------+-----------+------------+
Which collapses into:
+---------+-----------+----------------+------------+
| item_id | item_name | avg(ir.rating) | ir.item_id |
+---------+-----------+----------------+------------+
| 3 | Item 3 | 10 | 3 |
+---------+-----------+----------------+------------+
Combining the three collapsed results gives:
+---------+-----------+----------------+------------+
| item_id | item_name | avg(ir.rating) | ir.item_id |
+---------+-----------+----------------+------------+
| 1 | Item 1 | 7.5 | 1 |
| 3 | Item 3 | 10 | 3 |
| 2 | Item 2 | NULL | NULL |
+---------+-----------+----------------+------------+
Which is what you got.
The one tricky part is the way the NULL rows collapsed. Recall, these were the null rows:
+---------+-----------+-----------+------------+
| item_id | item_name | ir.rating | ir.item_id |
+---------+-----------+-----------+------------+
| 2 | Item 2 | NULL | NULL |
| 4 | Item 4 | NULL | NULL |
| 5 | Item 5 | NULL | NULL |
+---------+-----------+-----------+------------+
When you do a group by, most database systems will not even let you select columns that are not part of the group. MySQL is an exception. Since you are only grouping on ir.rating, that's the only one most would let you select, because there is no clear way to collapse three rows in a non-aggregate way. What MySQL does is just choose the first one it encounters and use the values in that row as the collapsed value. So (2,4,5) => (2) and (Item 2, Item 4, Item 5) => Item 2 and (NULL, NULL, NULL) => NULL. That's why you only see row 2 (you are actually seeing three collapsed rows that look like row 2).
To really see this in action and drive the point home, consider this query:
select group_concat(i.item_id), group_concat(i.item_name), avg(ir.rating) from Items i left join ItemRating ir ON ir.item_id = i.item_id group by ir.item_id;
This is just like your original query except all three selected columns now have group aggregate functions. I am using GROUP_CONCAT, which just concatenates strings to form the collapsed version (this would be valid in other SQL systems besides MySQL). That returns this:
+-------------------------+---------------------------+----------------+
| group_concat(i.item_id) | group_concat(i.item_name) | avg(ir.rating) |
+-------------------------+---------------------------+----------------+
| 2,4,5 | Item 2,Item 4,Item 5 | NULL |
| 1,1 | Item 1,Item 1 | 7.5000 |
| 3 | Item 3 | 10.0000 |
+-------------------------+---------------------------+----------------+