0%

Exercise 2: requesting three documents

Let’s try using the rows parameter. Request three documents from the genotype-phenotype core. You can modify the query from the previous exercise.

Go to exercise 2 in the Google Colab. Once you’ve finished Exercise 2 in the Google Colab, return here to continue the tutorial.

Show the correct answer
num_found, df = solr_request(
    core='genotype-phenotype', 
    params={
        'q': '*:*',
        'rows': 3
    }
)