Question

What's wrong here?

import pandas as pd
import numpy as np
ts = pd.Series(randint(0, 500, len(rng)), index=rng)

Gives: TypeError: randint() takes exactly 3 arguments (4 given)

System: Python 2.7.5+ Pandas 0.12.0-2ubuntu1

Était-ce utile?

La solution

Seems you randint comes from the standard library (random.randint)

Here are two ways to correct your code

  1. modify randint to np.random.randint

  2. add from numpy.random import randint

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top