--- license: apache-2.0 task_categories: - text-generation language: - code tags: - code - scientific-computing - domain-specific - chemistry - biology - physics size_categories: - 1M 50) & (df['line_count'] < 1000)] ``` ### Domain-Specific Analysis ```python # Analyze code characteristics for a specific domain protein_df = pd.read_csv('dataset_Protein.csv') print(f"Number of code files in Protein domain: {len(protein_df)}") print(f"Average file size: {protein_df['file_size'].mean():.2f} bytes") print(f"Average line count: {protein_df['line_count'].mean():.2f} lines") ``` ## Important Notes 1. **File Size**: Some dataset files are large (up to several GB), please be mindful of memory usage when loading 2. **Encoding**: All files use UTF-8 encoding; ensure proper handling of special characters if encountered 3. **Data Quality**: Data is sourced from public repositories and may vary in code quality; preprocessing is recommended before use 4. **License Compliance**: Please comply with the license requirements of the original repositories when using the data