Skip to content

Commit

Permalink
fetch index column correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
Tagar committed Feb 18, 2018
1 parent ea7523d commit 663a68d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion abalon/spark/pivoter.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def map_dict_to_denseArray(idx, d):
spark = get_spark()

# assuming particular order of columns
(idx_col, key_col) = df.columns[0:1]
(idx_col, key_col) = df.columns[0:2]

if not all_vars:
# get list of variables from the dataset:
Expand Down
2 changes: 1 addition & 1 deletion abalon/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.

version = '2.2.2'
version = '2.2.3'


0 comments on commit 663a68d

Please sign in to comment.