Designing Experiments
Example Prompt:
Example Response:
Related Tasks:
Statistical Analysis of Biological Data
Example Prompt:
Example Response:
import pandas as pd
data = pd.read_csv('yourfile.csv')
correlation_matrix = data.corr()
import seaborn as sns
import matplotlib.pyplot as plt
sns.heatmap(correlation_matrix, annot=True)
plt.show()
Related Tasks:
Planning Field Studies
Example Prompt:
Example Response:
Related Tasks:
Conducting Literature Reviews
Example Prompt:
Example Response:
Related Tasks:
Writing Research Reports
Example Prompt:
Example Response:
Related Tasks: