1
Let’s say I have at hand this dataframe
And I know that a specific value inside a column called "Code", contains a String that I will call "mxrf11", in the whole dataframe will not have another name 'mxrf11'' in the column "code" (I am commenting on this because I do not know if it is relevant to have repeated values, but in the case of this Dataframe no name of the column "Codes" is repeated)
How do I pull the Dataframe information line related to the code "mxrf11"?
Edit 1 : Trying the solution of the first comment
Something strange happened, he gave the names of the columns of the Dataframe instead of the information associated with the line
Interestingly, the same problem happened in the second solution suggested in the post.
Edit 2 - The problem was that the letters were lowercase so Dataframe did not return anything. By replacing with the uppercase letter all methods returned the expected information. :)
Related: As in "Empty Dataframe"?
– Icaro Martins