I was thinking of removing the index column from the output of verbose mode.
What's your opinion about that? Do we should stick with that column or not?
If you think we should have it, will it be better to start from 1 instead 0 or not?
Please, let me know your idea.
with the index column:
┏━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ ┃ Country ┃ Date ┃ Title ┃
┡━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ 0 │ Australia │ 1 day ago │ PhD Scholarship: Machine Learning-Enabled Processing & │
│ │ │ │ Visualization of Dissolved Metal Ion Sensing │
│ 1 │ Australia │ 10 days ago │ Two PhD scholarships in BioMedical Machine Learning │
│ │ │ │ Lab at UNSW SYDNEY │
│ 2 │ Belgium │ │ PhD in deep learning for biomedical images of the │
│ │ │ │ pelvic floor │
│ 3 │ China │ │ Radar signal processing based on neural network │
│ │ │ │ sequence model │
│ 4 │ China │ │ Research on Smart Radar for Physical Sign Detection │
│ 5 │ China │ │ Research on artificial intelligence algorithms for │
│ │ │ │ radar and vision fusion technology
and without it:
┏━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Country ┃ Date ┃ Title ┃
┡━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ Australia │ 1 day ago │ PhD Scholarship: Machine Learning-Enabled Processing & │
│ │ │ Visualization of Dissolved Metal Ion Sensing │
│ Australia │ 10 days ago │ Two PhD scholarships in BioMedical Machine Learning Lab at │
│ │ │ UNSW SYDNEY │
│ Belgium │ │ PhD in deep learning for biomedical images of the pelvic │
│ │ │ floor │
│ China │ │ Radar signal processing based on neural network sequence │
│ │ │ model │
│ China │ │ Research on Smart Radar for Physical Sign Detection │
│ China │ │ Research on artificial intelligence algorithms for radar │
│ │ │ and vision fusion technology │
I was thinking of removing the
index
column from the output ofverbose
mode. What's your opinion about that? Do we should stick with that column or not? If you think we should have it, will it be better to start from1
instead0
or not? Please, let me know your idea.with the
index
column:and without it: