https://stackoverflow.com/questions/8988268/count-group-by-with-active-record
https://stackoverflow.com/questions/11354802/how-to-do-a-num-rows-on-count-query-in-codeigniter

burada count metodunu nasıl kullana bileceğin ile ilgili örnekler var , count metodu dönen verilerin sayısını veriyor.
https://www.w3schools.com/sql/func_mysql_count.asp
bu adreste ise temel seviye de sql bilgileri mevcut yukarıda verdiğim linkte count metodunun kullanımı anlatılıyor.

ci sitesinde ise böyle bir örnek var.

echo $this->db->count_all_results('my_table'); // Produces an integer, like 25
$this->db->like('title', 'match');
$this->db->from('my_table');
echo $this->db->count_all_results(); // Produces an integer, like 17