We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fffabd commit 3ee6a01Copy full SHA for 3ee6a01
README.md
@@ -119,13 +119,13 @@ Setting and getting individual elements of a dataframe or series is slow however
119
120
```julia
121
>> x_series = Series(randn(10000))
122
->> @time x[1]
+>> @time x_series[1]
123
elapsed time: 0.000121945 seconds (2644 bytes allocated)
124
>> x_values = values(x_series)
125
>> @time x_values[1]
126
elapsed time: 2.041e-6 seconds (64 bytes allocated)
127
>> x_native = randn(10000)
128
+>> @time x_native[1]
129
elapsed time: 2.689e-6 seconds (64 bytes allocated)
130
```
131
0 commit comments