Conversation
Added Tables Skill
| "\n", | ||
| "Tables are a simple way to organize and store data. They are commonly used in spreadsheets (think Excel or Google Sheets) and databases, where each row holds a record, and each column holds a different attribute of that record.\n", | ||
| "\n", | ||
| "CSV files (Comma-Separated Values) are one of the most popular formats for storing tables. This files can be easily exported from an Excel or Google Sheets file (or opened via one of these applications)." |
There was a problem hiding this comment.
Generally for the skill lessons I try to provide a concrete example. In this case, I think it would make sense to have an example CSV (something straightforward) that we provide among the corpora, then demonstrate loading it and viewing it (before we do anything with their own files)
There was a problem hiding this comment.
I have this file, but I'm not sure how to upload it to the site or you mean in a different way? It's the data.csv used in the reading example. Let me know how and I'll add it.
There was a problem hiding this comment.
For big corpora, the best way is to provide it is with a readonly shared folder, which we already have for corpora. This is described here: https://tljh.jupyter.org/en/latest/howto/content/share-data.html#option-2-create-a-read-only-shared-folder-for-data
There was a problem hiding this comment.
For now (since the server is a mess) can we just assume the files will be there, and use the appropriate path? You can check how we load corpora to figure out what the path is
Added Tables Skill