DataFrame Character Truncation
1
0
Entering edit mode
Dario Strbenac ★ 1.6k
@dario-strbenac-5916
Last seen 20 hours ago
Australia

Can it be turned off or changed to a different value?

> DataFrame(test = paste(LETTERS, collapse = ''))
DataFrame with 1 row and 1 column
                    test
             <character>
1 ABCDEFGHIJKLMNOPQRST..

?`show,DataFrame-method` seems not.

S4Vectors • 763 views
ADD COMMENT
1
Entering edit mode
@james-w-macdonald-5106
Last seen 3 days ago
United States

As a DataFrame? No. But if you want conventional data.frame behavior, you can just convert.

> as(DataFrame(test = paste(letters, collapse = "")), "data.frame")
                        test
1 abcdefghijklmnopqrstuvwxyz
ADD COMMENT

Login before adding your answer.

Traffic: 1102 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6